2009-11-24 15:19:20 +01:00
|
|
|
{ stdenv, fetchurl, aterm, perl, curl, bzip2, openssl ? null
|
2006-11-17 13:49:46 +01:00
|
|
|
, storeDir ? "/nix/store"
|
|
|
|
, stateDir ? "/nix/var"
|
|
|
|
}:
|
|
|
|
|
2009-09-24 23:39:32 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2010-03-11 11:51:53 +01:00
|
|
|
name = "nix-0.15pre20548";
|
|
|
|
|
2007-08-14 18:41:41 +02:00
|
|
|
src = fetchurl {
|
2010-03-11 12:15:58 +01:00
|
|
|
url = "http://hydra.nixos.org/build/322035/download/4/${name}.tar.bz2";
|
2010-03-11 11:51:53 +01:00
|
|
|
sha256 = "1fiixfs53f8d54jadzzx2akqkdpz6ncbhixb6bkrnrgxbfjdydrr";
|
2007-08-14 18:41:41 +02:00
|
|
|
};
|
2007-08-11 12:34:07 +02:00
|
|
|
|
2010-03-06 00:22:36 +01:00
|
|
|
buildNativeInputs = [perl];
|
|
|
|
buildInputs = [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}
|
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/;
|
2010-03-11 11:51:53 +01:00
|
|
|
license = "LGPLv2+";
|
2006-11-17 13:49:46 +01:00
|
|
|
};
|
|
|
|
}
|