mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
fix build of pngcheck
This commit is contained in:
parent
7618d886c9
commit
96066935f2
2 changed files with 4 additions and 2 deletions
|
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||
# '';
|
||||
|
||||
makefile = "Makefile.unx";
|
||||
makeFlags = "ZPATH=${zlib.out}/lib";
|
||||
makeFlags = "ZPATH=${zlib.static}/lib";
|
||||
|
||||
buildInputs = [ zlib ];
|
||||
|
||||
|
|
|
@ -2953,7 +2953,9 @@ in
|
|||
|
||||
plowshare = callPackage ../tools/misc/plowshare { };
|
||||
|
||||
pngcheck = callPackage ../tools/graphics/pngcheck { };
|
||||
pngcheck = callPackage ../tools/graphics/pngcheck {
|
||||
zlib = zlibStatic;
|
||||
};
|
||||
|
||||
pngcrush = callPackage ../tools/graphics/pngcrush { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue