nixpkgs/pkgs/tools/archivers/zip/default.nix
Eelco Dolstra a450978f26 * Glibc updated to 2.3.5.
* GCC 3.4.4 and 3.3.6.
* Other stdenv packages updated.

svn path=/nixpkgs/trunk/; revision=3188
2005-06-17 10:30:13 +00:00

9 lines
226 B
Nix

{stdenv, fetchurl}: stdenv.mkDerivation {
name = "zip-2.31";
builder = ./builder.sh;
src = fetchurl {
url = http://ftp.info-zip.org/pub/infozip/src/zip231.tar.gz;
md5 = "6bfc076664416251d7624ab3538d1cb9";
};
}