2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, zlib, apngSupport ? true }:
|
2011-09-19 23:05:02 +00:00
|
|
|
|
|
|
|
assert zlib != null;
|
2003-11-06 15:24:19 +00:00
|
|
|
|
2013-08-02 16:28:29 +00:00
|
|
|
let
|
2022-12-29 22:48:40 +00:00
|
|
|
patchVersion = "1.6.39";
|
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";
|
2022-12-29 22:48:40 +00:00
|
|
|
hash = "sha256-SsS26roAzeISxI22XLlCkQc/68oixcef2ocJFQLoDP0=";
|
2013-08-02 16:28:29 +00:00
|
|
|
};
|
2021-01-21 17:00:13 +00:00
|
|
|
whenPatched = lib.optionalString apngSupport;
|
2013-06-26 08:54:06 +00:00
|
|
|
|
2013-08-23 07:54:38 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2022-02-14 21:32:50 +00:00
|
|
|
pname = "libpng" + whenPatched "-apng";
|
2022-12-29 22:48:40 +00:00
|
|
|
version = "1.6.39";
|
2011-10-05 08:13:16 +00:00
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
src = fetchurl {
|
2013-06-26 08:54:06 +00:00
|
|
|
url = "mirror://sourceforge/libpng/libpng-${version}.tar.xz";
|
2022-12-29 22:48:40 +00:00
|
|
|
hash = "sha256-H0aWznC07l+F8eFiPcEimyEAKfpLeu5XPfPiunsDaTc=";
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
2014-08-26 23:14:09 +00:00
|
|
|
postPatch = whenPatched "gunzip < ${patch_src} | patch -Np1";
|
2011-10-05 08:13:16 +00:00
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
2016-07-09 13:42:42 +00:00
|
|
|
outputBin = "dev";
|
2013-08-23 07:54:38 +00:00
|
|
|
|
2010-07-18 21:54:42 +00:00
|
|
|
propagatedBuildInputs = [ zlib ];
|
2010-07-19 22:24:26 +00:00
|
|
|
|
2018-12-03 12:18:31 +00:00
|
|
|
doCheck = true;
|
2013-02-14 19:53:46 +00:00
|
|
|
|
2010-07-19 22:24:26 +00:00
|
|
|
passthru = { inherit zlib; };
|
2011-10-05 08:13:16 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2013-06-26 08:54:06 +00:00
|
|
|
description = "The official reference implementation for the PNG file format" + whenPatched " with animation patch";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.libpng.org/pub/png/libpng.html";
|
2022-12-29 22:48:40 +00:00
|
|
|
changelog = "https://github.com/glennrp/libpng/blob/v1.6.39/CHANGES";
|
2018-12-03 12:18:31 +00:00
|
|
|
license = licenses.libpng2;
|
2013-09-12 15:17:32 +00:00
|
|
|
platforms = platforms.all;
|
2022-12-29 22:48:40 +00:00
|
|
|
maintainers = with maintainers; [ vcunat ];
|
2008-03-06 16:22:41 +00:00
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
}
|