2011-09-20 07:13:39 +01:00
|
|
|
{ stdenv, fetchurl, zlib, xz }:
|
2011-09-20 00:05:02 +01:00
|
|
|
|
|
|
|
assert zlib != null;
|
2003-11-06 15:24:19 +00:00
|
|
|
|
2011-09-24 21:44:11 +01:00
|
|
|
# If you want to upgrade libpng, look at libpng15 branch
|
2009-03-05 14:09:43 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2012-02-19 10:59:31 +00:00
|
|
|
name = "libpng-1.2.47";
|
2008-06-12 10:49:40 +01:00
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
src = fetchurl {
|
2011-09-20 07:14:29 +01:00
|
|
|
url = "mirror://sourceforge/libpng/${name}.tar.xz";
|
2012-02-19 10:59:31 +00:00
|
|
|
sha256 = "1lai3dnzw81y40jr17bdj1qh08hwv9mc1v74yybl7jdx2hiilsvx";
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
2008-06-12 10:49:40 +01:00
|
|
|
|
2010-07-18 22:54:42 +01:00
|
|
|
propagatedBuildInputs = [ zlib ];
|
2010-07-19 23:24:26 +01:00
|
|
|
|
2011-09-20 07:13:39 +01:00
|
|
|
buildNativeInputs = [ xz ];
|
|
|
|
|
2010-07-19 23:24:26 +01:00
|
|
|
passthru = { inherit zlib; };
|
2008-06-12 10:49:40 +01:00
|
|
|
|
2008-03-06 16:22:41 +00:00
|
|
|
meta = {
|
|
|
|
description = "The official reference implementation for the PNG file format";
|
|
|
|
homepage = http://www.libpng.org/pub/png/libpng.html;
|
2009-10-29 14:19:39 +00:00
|
|
|
license = "free-non-copyleft"; # http://www.libpng.org/pub/png/src/libpng-LICENSE.txt
|
2008-03-06 16:22:41 +00:00
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
}
|