summary refs log tree commit diff
path: root/pkgs/misc/nix-static/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2007-03-29 09:24:14 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2007-03-29 09:24:14 +0000
commita7d27b2201036a2d318f788570ad69ff3ef93445 (patch)
treebe3515f76bb950ea804146af3a05801f4df567fd /pkgs/misc/nix-static/default.nix
parent19d0e4732041ac991b74fa7de68446d60a97c745 (diff)
downloadnixlib-a7d27b2201036a2d318f788570ad69ff3ef93445.tar
nixlib-a7d27b2201036a2d318f788570ad69ff3ef93445.tar.gz
nixlib-a7d27b2201036a2d318f788570ad69ff3ef93445.tar.bz2
nixlib-a7d27b2201036a2d318f788570ad69ff3ef93445.tar.lz
nixlib-a7d27b2201036a2d318f788570ad69ff3ef93445.tar.xz
nixlib-a7d27b2201036a2d318f788570ad69ff3ef93445.tar.zst
nixlib-a7d27b2201036a2d318f788570ad69ff3ef93445.zip
* Move nix to tools/package-management, and use the latest unstable
  release.

svn path=/nixpkgs/trunk/; revision=8477
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];
-}