2010-02-05 10:41:24 +00:00
|
|
|
{ stdenv, fetchurl, aterm, perl, curl, bzip2, openssl ? null
|
2004-03-31 11:19:01 +01:00
|
|
|
, storeDir ? "/nix/store"
|
|
|
|
, stateDir ? "/nix/var"
|
|
|
|
}:
|
2004-02-16 16:54:01 +00:00
|
|
|
|
2009-11-05 23:47:53 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2010-02-05 10:41:24 +00:00
|
|
|
name = "nix-0.14";
|
2006-10-11 16:31:52 +01:00
|
|
|
|
2004-02-16 15:40:55 +00:00
|
|
|
src = fetchurl {
|
2010-02-05 10:41:24 +00:00
|
|
|
url = "http://hydra.nixos.org/build/281118/download/4/${name}.tar.bz2";
|
|
|
|
sha256 = "7df3dd52a7a42354e845302665c3e1f67af287f9cca2bda67f8abb724e52c519";
|
2004-02-16 15:40:55 +00:00
|
|
|
};
|
2009-11-05 23:47:53 +00:00
|
|
|
|
2010-02-05 10:41:24 +00:00
|
|
|
buildInputs = [ perl curl openssl ];
|
2006-10-11 16:31:52 +01:00
|
|
|
|
2010-02-05 10:41:24 +00:00
|
|
|
configureFlags =
|
|
|
|
''
|
|
|
|
--with-store-dir=${storeDir} --localstatedir=${stateDir}
|
|
|
|
--with-aterm=${aterm} --with-bzip2=${bzip2}
|
|
|
|
--disable-init-state
|
|
|
|
'';
|
2006-10-11 17:45:55 +01:00
|
|
|
|
2009-11-05 23:47:53 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
passthru = { inherit aterm; };
|
|
|
|
|
2006-10-11 17:45:55 +01:00
|
|
|
meta = {
|
|
|
|
description = "The Nix Deployment System";
|
2008-06-24 10:39:19 +01:00
|
|
|
homepage = http://nixos.org/;
|
2007-11-05 11:22:37 +00:00
|
|
|
license = "LGPL";
|
2006-10-11 17:45:55 +01:00
|
|
|
};
|
2004-02-16 15:40:55 +00:00
|
|
|
}
|