2007-03-01 15:44:23 +00:00
|
|
|
{ stdenv, fetchurl, aterm, db4, perl, curl, bzip2, openssl ? null
|
2006-11-17 12:49:46 +00:00
|
|
|
, storeDir ? "/nix/store"
|
|
|
|
, stateDir ? "/nix/var"
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-06-04 11:22:26 +01:00
|
|
|
name = "nix-0.11pre8816";
|
2006-11-17 12:49:46 +00:00
|
|
|
|
2007-08-11 11:34:07 +01:00
|
|
|
src =
|
|
|
|
fetchurl {
|
|
|
|
url = http://nix.cs.uu.nl/dist/nix/nix-unstable-latest/nix-0.11pre9063.tar.bz2;
|
|
|
|
sha256 = "0fxsvam0ihzcfg694d28d6b3vkx5klh25jvf3y5igyyqszmmhnxj";
|
|
|
|
};
|
|
|
|
|
2007-03-01 15:44:23 +00:00
|
|
|
buildInputs = [perl curl openssl];
|
2006-11-17 12:49:46 +00:00
|
|
|
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|