2015-08-06 08:25:55 +02:00
|
|
|
{ stdenv, fetchurl, zlib, apngSupport ? true }:
|
2011-09-20 01:05:02 +02:00
|
|
|
|
|
|
|
assert zlib != null;
|
2003-11-06 16:24:19 +01:00
|
|
|
|
2013-08-02 18:28:29 +02:00
|
|
|
let
|
2017-04-01 13:27:39 +02:00
|
|
|
version = "1.6.29";
|
2017-01-02 17:20:13 +01:00
|
|
|
patchVersion = "1.6.26";
|
|
|
|
# patchVersion = version;
|
2017-04-01 13:27:39 +02:00
|
|
|
sha256 = "0fgjqp7x6jynacmqh6dj72cn6nnf6yxjfqqqfsxrx0pyx22bcia2";
|
2013-11-25 22:24:13 +01:00
|
|
|
patch_src = fetchurl {
|
2017-01-02 17:20:13 +01:00
|
|
|
url = "mirror://sourceforge/libpng-apng/libpng-${patchVersion}-apng.patch.gz";
|
2016-11-17 11:53:16 +01:00
|
|
|
sha256 = "0b6p2k4afvhk1svargpllcvhxb4g3p857wkqk85cks0yv42ckph1";
|
2013-08-02 18:28:29 +02:00
|
|
|
};
|
|
|
|
whenPatched = stdenv.lib.optionalString apngSupport;
|
2013-06-26 10:54:06 +02:00
|
|
|
|
2013-08-23 09:54:38 +02:00
|
|
|
in stdenv.mkDerivation rec {
|
2013-06-26 10:54:06 +02:00
|
|
|
name = "libpng" + whenPatched "-apng" + "-${version}";
|
2011-10-05 10:13:16 +02:00
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
src = fetchurl {
|
2013-06-26 10:54:06 +02:00
|
|
|
url = "mirror://sourceforge/libpng/libpng-${version}.tar.xz";
|
2013-08-02 18:28:29 +02:00
|
|
|
inherit sha256;
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
2014-08-27 01:14:09 +02:00
|
|
|
postPatch = whenPatched "gunzip < ${patch_src} | patch -Np1";
|
2011-10-05 10:13:16 +02:00
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
2016-07-09 15:42:42 +02:00
|
|
|
outputBin = "dev";
|
2013-08-23 09:54:38 +02:00
|
|
|
|
2010-07-18 23:54:42 +02:00
|
|
|
propagatedBuildInputs = [ zlib ];
|
2010-07-20 00:24:26 +02:00
|
|
|
|
2016-02-09 19:14:18 +01:00
|
|
|
# it's hard to cross-run tests and some check programs didn't compile anyway
|
|
|
|
makeFlags = stdenv.lib.optional (!doCheck) "check_PROGRAMS=";
|
|
|
|
doCheck = ! stdenv ? cross;
|
2013-02-14 20:53:46 +01:00
|
|
|
|
2010-07-20 00:24:26 +02:00
|
|
|
passthru = { inherit zlib; };
|
2011-10-05 10:13:16 +02:00
|
|
|
|
2013-09-12 17:17:32 +02:00
|
|
|
meta = with stdenv.lib; {
|
2013-06-26 10:54:06 +02:00
|
|
|
description = "The official reference implementation for the PNG file format" + whenPatched " with animation patch";
|
2008-03-06 17:22:41 +01:00
|
|
|
homepage = http://www.libpng.org/pub/png/libpng.html;
|
2014-09-21 19:53:20 +02:00
|
|
|
license = licenses.libpng;
|
2013-09-12 17:17:32 +02:00
|
|
|
platforms = platforms.all;
|
2014-09-21 19:53:20 +02:00
|
|
|
maintainers = [ maintainers.vcunat maintainers.fuuzetsu ];
|
2008-03-06 17:22:41 +01:00
|
|
|
};
|
2003-11-06 16:24:19 +01:00
|
|
|
}
|