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