summary refs log tree commit diff
path: root/pkgs/misc/nix-static/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/misc/nix-static/default.nix')
-rw-r--r--pkgs/misc/nix-static/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/misc/nix-static/default.nix b/pkgs/misc/nix-static/default.nix
deleted file mode 100644
index e0380652defa..000000000000
--- a/pkgs/misc/nix-static/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ stdenv, fetchurl, aterm, bdb, perl, curl, autoconf, automake, libtool
-, storeDir ? "/nix/store"
-, stateDir ? "/nix/var"
-}:
-
-assert aterm != null && bdb != null && perl != null;
-# assert bdb.version >= 4.2
-# assert aterm.version >= 2.0
-
-stdenv.mkDerivation {
-  name = "nix-0.10pre5896";
-  builder = ./builder.sh;
-  src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/nix/nix-0.10pre5896/nix-0.10pre5896.tar.bz2;
-    md5 = "509d4a452cbf2894a86184b5eaf45abd";
-  };
-  buildInputs = [aterm bdb perl curl autoconf automake libtool];
-  inherit storeDir stateDir aterm bdb;
-
-  # uncomment if you want to be able to use nix-prefetch-url when NIX_ROOT
-  # is set
-  patches = [./nix-0.10pre5679.patch ./nix-0.10pre5896-static.patch];
-}