* Get rid of the old unzip.

svn path=/nixpkgs/trunk/; revision=2514
This commit is contained in:
Eelco Dolstra 2005-04-11 08:22:23 +00:00
parent 42fa9be439
commit d8a0bdebf2
2 changed files with 0 additions and 24 deletions

View File

@ -1,14 +0,0 @@
. $stdenv/setup
builder() {
make -f unix/Makefile generic
}
installer() {
make -f unix/Makefile prefix=$out install
}
buildPhase=builder
installPhase=installer
genericBuild

View File

@ -1,10 +0,0 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "unzip-5.50";
builder = ./builder.sh;
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/unzip550.tar.gz;
md5 = "798592d62e37f92571184236947122ed";
};
}