nixpkgs/pkgs/development/libraries/zlib/default.nix
Eelco Dolstra c9ac877503 * ZLib updated to 1.2.3.
svn path=/nixpkgs/trunk/; revision=3415
2005-07-23 21:00:06 +00:00

11 lines
218 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "zlib-1.2.3";
src = fetchurl {
url = http://www.zlib.net/zlib-1.2.3.tar.gz;
md5 = "debc62758716a169df9f62e6ab2bc634";
};
configureFlags = "--shared";
}