3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libpng/default.nix

45 lines
1.3 KiB
Nix
Raw Normal View History

2017-06-28 21:21:38 +01:00
{ stdenv, fetchurl, zlib, apngSupport ? true
, buildPlatform, hostPlatform
}:
assert zlib != null;
let
version = "1.6.31";
patchVersion = "1.6.31";
sha256 = "0hcbxv9qf4f9q7brrk0ndag526glr8lii43grssv45j9w0nn0ai3";
patch_src = fetchurl {
url = "mirror://sourceforge/libpng-apng/libpng-${patchVersion}-apng.patch.gz";
sha256 = "0f10ih658j514vpvsli0pk378vcmjn78g52cssyg92r4k1r19rla";
};
whenPatched = stdenv.lib.optionalString apngSupport;
2013-08-23 08:54:38 +01:00
in stdenv.mkDerivation rec {
name = "libpng" + whenPatched "-apng" + "-${version}";
src = fetchurl {
url = "mirror://sourceforge/libpng/libpng-${version}.tar.xz";
inherit sha256;
};
2014-08-27 00:14:09 +01:00
postPatch = whenPatched "gunzip < ${patch_src} | patch -Np1";
outputs = [ "out" "dev" "man" ];
2016-07-09 14:42:42 +01:00
outputBin = "dev";
2013-08-23 08:54:38 +01: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 21:21:38 +01: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 18:53:20 +01:00
license = licenses.libpng;
platforms = platforms.all;
2014-09-21 18:53:20 +01:00
maintainers = [ maintainers.vcunat maintainers.fuuzetsu ];
};
}