nixpkgs/pkgs/misc/nix/unstable.nix

25 lines
581 B
Nix
Raw Normal View History

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