a450978f26
* GCC 3.4.4 and 3.3.6. * Other stdenv packages updated. svn path=/nixpkgs/trunk/; revision=3188
9 lines
226 B
Nix
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";
|
|
};
|
|
}
|