treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix

continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
This commit is contained in:
Jonathan Ringer
2021-01-19 01:16:25 -08:00
committed by Jonathan Ringer
parent 200bb8c977
commit 9bb3fccb5b
1653 changed files with 3872 additions and 3872 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
, coreutils
, fetchurl
, makeWrapper
, pkgconfig
, pkg-config
}:
with lib.strings;
@@ -159,7 +159,7 @@ let
stdenv.mkDerivation ((faust2ApplBase args) // {
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ makeWrapper ];
propagatedBuildInputs = [ faust ] ++ propagatedBuildInputs;
+3 -3
View File
@@ -2,7 +2,7 @@
, coreutils
, fetchFromGitHub
, makeWrapper
, pkgconfig
, pkg-config
, cmake
, llvm
, emscripten
@@ -45,7 +45,7 @@ let
inherit src;
nativeBuildInputs = [ makeWrapper pkgconfig cmake vim which ];
nativeBuildInputs = [ makeWrapper pkg-config cmake vim which ];
buildInputs = [ llvm emscripten openssl libsndfile libmicrohttpd gnutls libtasn1 p11-kit ];
@@ -168,7 +168,7 @@ let
stdenv.mkDerivation ((faust2ApplBase args) // {
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ makeWrapper ];
propagatedBuildInputs = [ faust ] ++ propagatedBuildInputs;
@@ -6,7 +6,7 @@
, gcc
, gnumake
, openssl
, pkgconfig
, pkg-config
}:
@@ -14,5 +14,5 @@ faust.wrapWithBuildEnv {
baseName = "faust2jackrust";
propagatedBuildInputs = [ libjack2 cargo binutils gcc gnumake openssl pkgconfig ];
propagatedBuildInputs = [ libjack2 cargo binutils gcc gnumake openssl pkg-config ];
}