* Unzip 6.0.

svn path=/nixpkgs/trunk/; revision=17687
This commit is contained in:
Eelco Dolstra
2009-10-07 11:18:54 +00:00
parent 1ebd86987c
commit 672d3856df
3 changed files with 35 additions and 1 deletions
-18
View File
@@ -1,18 +0,0 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "unzip-5.52";
src = fetchurl {
url = http://nixos.org/tarballs/unzip552.tar.gz;
md5 = "9d23919999d6eac9217d1f41472034a9";
};
buildPhase = "make -f unix/Makefile generic";
installPhase = "make -f unix/Makefile prefix=$out install";
meta = {
homepage = http://www.info-zip.org;
};
}