891295a46a
svn path=/nixpkgs/branches/stdenv-updates/; revision=10432
13 lines
279 B
Nix
13 lines
279 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";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://www.info-zip.org;
|
|
};
|
|
}
|