pkgs/misc: pkgconfig -> pkg-config

This commit is contained in:
Ben Siraphob
2021-01-16 23:49:59 -08:00
committed by Jonathan Ringer
parent 5fffcef915
commit fce00d15c2
73 changed files with 154 additions and 154 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, alsaLib, cmake, pkgconfig, glib
{ lib, stdenv, fetchFromGitHub, alsaLib, cmake, pkg-config, glib
, tracingSupport ? true, logToStderr ? true }:
let oz = x: if x then "1" else "0"; in
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
sha256 = "1p6fh6ah5v3qz7dxhcsixx38bxg44ypbim4m03bxk3ls5i9xslmn";
};
nativeBuildInputs = [ cmake pkgconfig ];
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ alsaLib glib ];
+2 -2
View File
@@ -1,11 +1,11 @@
{ stdenv, apulse, libpulseaudio, pkgconfig, intltool, autoreconfHook }:
{ stdenv, apulse, libpulseaudio, pkg-config, intltool, autoreconfHook }:
stdenv.mkDerivation {
name = "libpressureaudio-${apulse.version}";
src = libpulseaudio.src;
nativeBuildInputs = [ pkgconfig intltool autoreconfHook ];
nativeBuildInputs = [ pkg-config intltool autoreconfHook ];
dontConfigure = true;