nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python.pkgs.pkgconfig: fix setup hook

after regression caused by https://github.com/NixOS/nixpkgs/pull/87705

+7 -1
+7 -1
pkgs/development/python-modules/pkgconfig/default.nix
··· 4 4 pname = "pkgconfig"; 5 5 version = "1.5.1"; 6 6 7 - setupHooks = pkgconfig.setupHooks; 7 + inherit (pkgconfig) 8 + setupHooks 9 + wrapperName 10 + suffixSalt 11 + targetPrefix 12 + baseBinName 13 + ; 8 14 9 15 src = fetchPypi { 10 16 inherit pname version;