nixpkgs-suyu/pkgs/tools/graphics/pngcheck/default.nix
Franz Pletz aff1f4ab94 Use general hardening flag toggle lists
The following parameters are now available:

  * hardeningDisable
    To disable specific hardening flags
  * hardeningEnable
    To enable specific hardening flags

Only the cc-wrapper supports this right now, but these may be reused by
other wrappers, builders or setup hooks.

cc-wrapper supports the following flags:

  * fortify
  * stackprotector
  * pie (disabled by default)
  * pic
  * strictoverflow
  * format
  * relro
  * bindnow
2016-03-05 18:55:26 +01:00

30 lines
738 B
Nix

{ 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" ];
makefile = "Makefile.unx";
makeFlags = "ZPATH=${zlib}/lib";
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 ];
};
}