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

zlib is build with static by default

+2 -6
+1 -1
pkgs/tools/graphics/pngcheck/default.nix
··· 29 homepage = "http://pmt.sourceforge.net/pngcrush"; 30 description = "Verifies the integrity of PNG, JNG and MNG files"; 31 license = licenses.free; 32 - platforms = with platforms; [ unix ]; 33 maintainers = with maintainers; [ starcraft66 ]; 34 }; 35 }
··· 29 homepage = "http://pmt.sourceforge.net/pngcrush"; 30 description = "Verifies the integrity of PNG, JNG and MNG files"; 31 license = licenses.free; 32 + platforms = platforms.unix; 33 maintainers = with maintainers; [ starcraft66 ]; 34 }; 35 }
+1 -5
pkgs/top-level/all-packages.nix
··· 9060 9061 pm2 = nodePackages.pm2; 9062 9063 - pngcheck = callPackage ../tools/graphics/pngcheck { 9064 - zlib = zlib.override { 9065 - static = true; 9066 - }; 9067 - }; 9068 9069 pngcrush = callPackage ../tools/graphics/pngcrush { }; 9070
··· 9060 9061 pm2 = nodePackages.pm2; 9062 9063 + pngcheck = callPackage ../tools/graphics/pngcheck { }; 9064 9065 pngcrush = callPackage ../tools/graphics/pngcrush { }; 9066