pngcheck: fix meta.platforms not being flattened, remove zlib overwrite

zlib is build with static by default
main
Sandro Jäckel 2 years ago
parent 9a27dfe40e
commit 507dc6bae6
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 2
      pkgs/tools/graphics/pngcheck/default.nix
  2. 6
      pkgs/top-level/all-packages.nix

@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
homepage = "http://pmt.sourceforge.net/pngcrush";
description = "Verifies the integrity of PNG, JNG and MNG files";
license = licenses.free;
platforms = with platforms; [ unix ];
platforms = platforms.unix;
maintainers = with maintainers; [ starcraft66 ];
};
}

@ -9060,11 +9060,7 @@ with pkgs;
pm2 = nodePackages.pm2;
pngcheck = callPackage ../tools/graphics/pngcheck {
zlib = zlib.override {
static = true;
};
};
pngcheck = callPackage ../tools/graphics/pngcheck { };
pngcrush = callPackage ../tools/graphics/pngcrush { };

Loading…
Cancel
Save