* libpng updated to 1.2.44.

svn path=/nixpkgs/branches/x-updates/; revision=22641
This commit is contained in:
Eelco Dolstra 2010-07-18 21:54:42 +00:00
parent 964c3d351f
commit 6b79040a0b

View File

@ -1,18 +1,16 @@
{stdenv, fetchurl, zlib}: { stdenv, fetchurl, zlib }:
assert zlib != null; assert zlib != null;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libpng-1.2.42"; name = "libpng-1.2.44";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/libpng/${name}.tar.gz"; url = "mirror://sourceforge/libpng/${name}.tar.gz";
md5 = "562066eb8557db91156eaeb309458488"; md5 = "89b62f8daaeeab1342e307d6d1411ff1";
}; };
propagatedBuildInputs = [zlib]; propagatedBuildInputs = [ zlib ];
inherit zlib;
meta = { meta = {
description = "The official reference implementation for the PNG file format"; description = "The official reference implementation for the PNG file format";
@ -20,4 +18,3 @@ stdenv.mkDerivation rec {
license = "free-non-copyleft"; # http://www.libpng.org/pub/png/src/libpng-LICENSE.txt license = "free-non-copyleft"; # http://www.libpng.org/pub/png/src/libpng-LICENSE.txt
}; };
} }