nixpkgs/pkgs/tools/graphics/pngcheck/default.nix

31 lines
745 B
Nix
Raw Normal View History

2014-12-01 16:05:20 +00:00
{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
name = "pngcheck-2.3.0";
src = fetchurl {
url = "mirror://sourceforge/png-mng/${name}.tar.gz";
sha256 = "0pzkj1bb4kdybk6vbfq9s0wzdm5szmrgixkas3xmbpv4mhws1w3p";
};
hardeningDisable = [ "format" ];
2014-12-01 16:05:20 +00:00
makefile = "Makefile.unx";
2016-06-12 23:20:49 +00:00
makeFlags = "ZPATH=${zlib.static}/lib";
2014-12-01 16:05:20 +00:00
buildInputs = [ zlib ];
installPhase = ''
mkdir -p $out/bin/
cp pngcheck $out/bin/pngcheck
'';
meta = {
homepage = http://pmt.sourceforge.net/pngcrush;
description = "Verifies the integrity of PNG, JNG and MNG files";
license = stdenv.lib.licenses.free;
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
};
}