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