nixpkgs/pkgs/development/libraries/libpng/default.nix

45 lines
1.3 KiB
Nix
Raw Normal View History

2017-06-28 20:21:38 +00:00
{ stdenv, fetchurl, zlib, apngSupport ? true
, buildPlatform, hostPlatform
}:
assert zlib != null;
let
2017-10-08 09:41:29 +00:00
version = "1.6.34";
patchVersion = "1.6.34";
sha256 = "1xjr0v34fyjgnhvaa1zixcpx5yvxcg4zwvfh0fyklfyfj86rc7ig";
patch_src = fetchurl {
url = "mirror://sourceforge/libpng-apng/libpng-${patchVersion}-apng.patch.gz";
2017-10-08 09:41:29 +00:00
sha256 = "1ha4npf9mfrzp0srg8a5amks5ww84xzfpjbsj8k3yjjpai798qg6";
};
whenPatched = stdenv.lib.optionalString apngSupport;
2013-08-23 07:54:38 +00:00
in stdenv.mkDerivation rec {
name = "libpng" + whenPatched "-apng" + "-${version}";
src = fetchurl {
url = "mirror://sourceforge/libpng/libpng-${version}.tar.xz";
inherit sha256;
};
2014-08-26 23:14:09 +00:00
postPatch = whenPatched "gunzip < ${patch_src} | patch -Np1";
outputs = [ "out" "dev" "man" ];
2016-07-09 13:42:42 +00:00
outputBin = "dev";
2013-08-23 07:54:38 +00:00
propagatedBuildInputs = [ zlib ];
# it's hard to cross-run tests and some check programs didn't compile anyway
makeFlags = stdenv.lib.optional (!doCheck) "check_PROGRAMS=";
2017-06-28 20:21:38 +00:00
doCheck = hostPlatform == buildPlatform;
passthru = { inherit zlib; };
meta = with stdenv.lib; {
description = "The official reference implementation for the PNG file format" + whenPatched " with animation patch";
homepage = http://www.libpng.org/pub/png/libpng.html;
2014-09-21 17:53:20 +00:00
license = licenses.libpng;
platforms = platforms.all;
2014-09-21 17:53:20 +00:00
maintainers = [ maintainers.vcunat maintainers.fuuzetsu ];
};
}