nixpkgs/pkgs/tools/archivers/zip/default.nix
Yury G. Kudryashov a7703662a4 Merged with trunk
svn path=/nixpkgs/branches/stdenv-updates/; revision=10145
2008-01-15 00:55:21 +00:00

9 lines
222 B
Nix

{stdenv, fetchurl}: stdenv.mkDerivation {
name = "zip-2.32";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.info-zip.org/pub/infozip/src/zip232.tgz;
md5 = "8a4da4460386e324debe97f3b7fe4d96";
};
}