* Rename new unzip.

svn path=/nixpkgs/trunk/; revision=2515
This commit is contained in:
Eelco Dolstra
2005-04-11 08:26:36 +00:00
parent d8a0bdebf2
commit 1af17b9d7f
4 changed files with 2 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "unzip-5.52";
builder = ./builder.sh;
src = fetchurl {
url = http://ftp.info-zip.org/pub/infozip/src/unzip552.tar.gz;
md5 = "9d23919999d6eac9217d1f41472034a9";
};
}