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