nixpkgs/pkgs/tools/package-management/nix/unstable.nix
Eelco Dolstra 74ac11507f * Latest unstable Nix.
svn path=/nixpkgs/trunk/; revision=8649
2007-05-02 21:35:49 +00:00

25 lines
605 B
Nix

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