treewide: pkgconfig -> pkg-config
Fix building with `config.allowAliases = false;`.
This commit is contained in:
parent
9ce80206a1
commit
819ab46fe7
@ -3,7 +3,7 @@
|
|||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
pkgs.poetry2nix.cli
|
pkgs.poetry2nix.cli
|
||||||
pkgs.pkgconfig
|
pkgs.pkg-config
|
||||||
pkgs.libvirt
|
pkgs.libvirt
|
||||||
pkgs.poetry
|
pkgs.poetry
|
||||||
];
|
];
|
||||||
|
@ -26,7 +26,7 @@ buildPythonPackage rec {
|
|||||||
patchShebangs .
|
patchShebangs .
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ nose pkgs.pkgconfig pkgs.swig ];
|
nativeBuildInputs = [ nose pkgs.pkg-config pkgs.swig ];
|
||||||
buildInputs = [ setuptools pkgs.libcdio ]
|
buildInputs = [ setuptools pkgs.libcdio ]
|
||||||
++ lib.optional stdenv.isDarwin pkgs.libiconv;
|
++ lib.optional stdenv.isDarwin pkgs.libiconv;
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ buildPythonPackage rec {
|
|||||||
PATH="${pkgs.parted}/sbin:$PATH"
|
PATH="${pkgs.parted}/sbin:$PATH"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgs.pkgconfig ];
|
nativeBuildInputs = [ pkgs.pkg-config ];
|
||||||
checkInputs = [ six ];
|
checkInputs = [ six ];
|
||||||
propagatedBuildInputs = [ pkgs.parted ];
|
propagatedBuildInputs = [ pkgs.parted ];
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE="-I${pkgs.poppler.dev}/include/poppler/";
|
NIX_CFLAGS_COMPILE="-I${pkgs.poppler.dev}/include/poppler/";
|
||||||
nativeBuildInputs = [ pkgs.pkgconfig ];
|
nativeBuildInputs = [ pkgs.pkg-config ];
|
||||||
buildInputs = [ pkgs.poppler.dev ];
|
buildInputs = [ pkgs.poppler.dev ];
|
||||||
propagatedBuildInputs = [ pycairo pygobject2 ];
|
propagatedBuildInputs = [ pycairo pygobject2 ];
|
||||||
|
|
||||||
|
@ -231,7 +231,7 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
packagesWithNativeBuildInputs = {
|
packagesWithNativeBuildInputs = {
|
||||||
arrow = [ pkgs.pkgconfig pkgs.arrow-cpp ];
|
arrow = [ pkgs.pkg-config pkgs.arrow-cpp ];
|
||||||
adimpro = [ pkgs.imagemagick ];
|
adimpro = [ pkgs.imagemagick ];
|
||||||
animation = [ pkgs.which ];
|
animation = [ pkgs.which ];
|
||||||
audio = [ pkgs.portaudio ];
|
audio = [ pkgs.portaudio ];
|
||||||
|
@ -313,7 +313,7 @@ self: super:
|
|||||||
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.pkg-config ];
|
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.pkg-config ];
|
||||||
buildInputs =
|
buildInputs =
|
||||||
(old.buildInputs or [ ])
|
(old.buildInputs or [ ])
|
||||||
++ [ pkgs.hdf5 self.pkgconfig self.cython ]
|
++ [ pkgs.hdf5 self.pkg-config self.cython ]
|
||||||
++ lib.optional mpiSupport mpi
|
++ lib.optional mpiSupport mpi
|
||||||
;
|
;
|
||||||
propagatedBuildInputs =
|
propagatedBuildInputs =
|
||||||
@ -453,7 +453,7 @@ self: super:
|
|||||||
);
|
);
|
||||||
|
|
||||||
jsonslicer = super.jsonslicer.overridePythonAttrs (old: {
|
jsonslicer = super.jsonslicer.overridePythonAttrs (old: {
|
||||||
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.pkgconfig ];
|
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.pkg-config ];
|
||||||
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.yajl ];
|
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.yajl ];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user