nixpkgs/pkgs/misc/nix/unstable.nix
Eelco Dolstra 6eaa664a97 * Latest unstable Nix.
svn path=/nixpkgs/trunk/; revision=7670
2007-01-15 11:57:24 +00:00

25 lines
581 B
Nix

{ stdenv, fetchurl, aterm, db4, perl, curl, bzip2
, storeDir ? "/nix/store"
, stateDir ? "/nix/var"
}:
stdenv.mkDerivation {
name = "nix-0.11pre7667";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/nix/nix-0.11pre7667/nix-0.11pre7667.tar.bz2;
md5 = "f1228dbf6dc6a1fce41fb881850a5a82";
};
buildInputs = [perl curl];
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";
};
}