* Zlib updated to 1.2.2.

svn path=/nixpkgs/trunk/; revision=2517
This commit is contained in:
Eelco Dolstra
2005-04-11 08:53:48 +00:00
parent fc20bd6518
commit 67140c410f
2 changed files with 3 additions and 26 deletions

View File

@@ -1,11 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "zlib-1.2.1";
name = "zlib-1.2.2";
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/zlib-1.2.1.tar.gz;
md5 = "ef1cb003448b4a53517b8f25adb12452";
url = http://www.gzip.org/zlib/zlib-1.2.2.tar.gz;
md5 = "68bd51aaa6558c3bc3fd4890e53413de";
};
configureFlags = "--shared";
patches = [./darwin.patch];
}