summary refs log tree commit diff
path: root/pkgs/tools/archivers/unzip
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2005-04-11 08:22:23 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2005-04-11 08:22:23 +0000
commitd8a0bdebf2e20d10f859a21004e16589d086974c (patch)
tree82f07d9b6a01cc14e0cef347f1a401cafe134735 /pkgs/tools/archivers/unzip
parent42fa9be439d2849949df5d8eda2704cee2f3cb02 (diff)
downloadnixpkgs-d8a0bdebf2e20d10f859a21004e16589d086974c.tar
nixpkgs-d8a0bdebf2e20d10f859a21004e16589d086974c.tar.gz
nixpkgs-d8a0bdebf2e20d10f859a21004e16589d086974c.tar.bz2
nixpkgs-d8a0bdebf2e20d10f859a21004e16589d086974c.tar.lz
nixpkgs-d8a0bdebf2e20d10f859a21004e16589d086974c.tar.xz
nixpkgs-d8a0bdebf2e20d10f859a21004e16589d086974c.tar.zst
nixpkgs-d8a0bdebf2e20d10f859a21004e16589d086974c.zip
* Get rid of the old unzip.
svn path=/nixpkgs/trunk/; revision=2514
Diffstat (limited to 'pkgs/tools/archivers/unzip')
-rw-r--r--pkgs/tools/archivers/unzip/builder.sh14
-rw-r--r--pkgs/tools/archivers/unzip/default.nix10
2 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/tools/archivers/unzip/builder.sh b/pkgs/tools/archivers/unzip/builder.sh
deleted file mode 100644
index 0166eecce6b..00000000000
--- a/pkgs/tools/archivers/unzip/builder.sh
+++ /dev/null
@@ -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
diff --git a/pkgs/tools/archivers/unzip/default.nix b/pkgs/tools/archivers/unzip/default.nix
deleted file mode 100644
index 8f68baa2e7d..00000000000
--- a/pkgs/tools/archivers/unzip/default.nix
+++ /dev/null
@@ -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";
-  };
-}