summary refs log tree commit diff
path: root/pkgs/misc/nix/unstable.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/misc/nix/unstable.nix')
-rw-r--r--pkgs/misc/nix/unstable.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/misc/nix/unstable.nix b/pkgs/misc/nix/unstable.nix
deleted file mode 100644
index 28d2da7f8690..000000000000
--- a/pkgs/misc/nix/unstable.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ stdenv, fetchurl, aterm, db4, perl, curl, bzip2, openssl ? null
-, storeDir ? "/nix/store"
-, stateDir ? "/nix/var"
-}:
-
-stdenv.mkDerivation {
-  name = "nix-0.11pre8349";
-  
-  src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/nix/nix-0.11pre8349/nix-0.11pre8349.tar.bz2;
-    md5 = "5f09f4986399b60e35d1815d9c003a2e";
-  };
-  
-  buildInputs = [perl curl openssl];
-
-  configureFlags = "
-    --with-store-dir=${storeDir} --localstatedir=${stateDir}
-    --with-aterm=${aterm} --with-bdb=${db4} --with-bzip2=${bzip2}
-    --disable-init-state";
-
-  meta = {
-    description = "The Nix Deployment System";
-  };
-}