2009-09-24 23:39:32 +02:00
|
|
|
{ stdenv, fetchurl, aterm, db4, perl, curl, bzip2, openssl ? null
|
2006-11-17 13:49:46 +01:00
|
|
|
, storeDir ? "/nix/store"
|
|
|
|
, stateDir ? "/nix/var"
|
2008-06-24 11:39:19 +02:00
|
|
|
, supportOldDBs ? true
|
2009-09-10 18:57:37 +02:00
|
|
|
, nameSuffix ? ""
|
|
|
|
, patches ? []
|
2006-11-17 13:49:46 +01:00
|
|
|
}:
|
|
|
|
|
2009-09-24 23:39:32 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2009-11-01 15:01:05 +01:00
|
|
|
name = "nix-0.13pre17922${nameSuffix}";
|
2006-11-17 13:49:46 +01:00
|
|
|
|
2007-08-14 18:41:41 +02:00
|
|
|
src = fetchurl {
|
2009-11-01 15:01:05 +01:00
|
|
|
url = "http://hydra.nixos.org/build/105957/download/4/${name}.tar.bz2";
|
|
|
|
sha256 = "11735f2d01ed1c4a7dd345690cd6bbfec175626a6bf2c0d76a27da3c5f51c187";
|
2007-08-14 18:41:41 +02:00
|
|
|
};
|
2007-08-11 12:34:07 +02:00
|
|
|
|
2007-03-01 16:44:23 +01:00
|
|
|
buildInputs = [perl curl openssl];
|
2006-11-17 13:49:46 +01:00
|
|
|
|
2008-01-30 01:56:10 +01:00
|
|
|
configureFlags = ''
|
2006-11-17 13:49:46 +01:00
|
|
|
--with-store-dir=${storeDir} --localstatedir=${stateDir}
|
2008-06-24 11:39:19 +02:00
|
|
|
--with-aterm=${aterm} --with-bzip2=${bzip2}
|
|
|
|
${if supportOldDBs then "--with-bdb=${db4}" else "--disable-old-db-compat"}
|
2008-01-30 01:56:10 +01:00
|
|
|
--disable-init-state
|
|
|
|
'';
|
2006-11-17 13:49:46 +01:00
|
|
|
|
2009-01-29 17:08:03 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2009-03-09 16:27:23 +01:00
|
|
|
passthru = { inherit aterm; };
|
|
|
|
|
2006-11-17 13:49:46 +01:00
|
|
|
meta = {
|
|
|
|
description = "The Nix Deployment System";
|
2008-06-24 11:39:19 +02:00
|
|
|
homepage = http://nixos.org/;
|
2007-11-05 12:22:37 +01:00
|
|
|
license = "LGPL";
|
2006-11-17 13:49:46 +01:00
|
|
|
};
|
2009-09-10 18:57:37 +02:00
|
|
|
|
2009-09-24 23:39:32 +02:00
|
|
|
inherit patches;
|
2006-11-17 13:49:46 +01:00
|
|
|
}
|