* nixUnstable updated, now with garbage collector.

svn path=/nixpkgs/trunk/; revision=24943
This commit is contained in:
Eelco Dolstra 2010-11-30 18:32:23 +00:00
parent a772452fc9
commit f088bd4791

View File

@ -1,24 +1,26 @@
{ stdenv, fetchurl, perl, curl, bzip2, openssl ? null
, pkgconfig, boehmgc
, storeDir ? "/nix/store"
, stateDir ? "/nix/var"
}:
stdenv.mkDerivation rec {
name = "nix-1.0pre24122";
name = "nix-1.0pre24855";
src = fetchurl {
url = "http://hydra.nixos.org/build/667798/download/4/${name}.tar.bz2";
sha256 = "0rz9radz4452bp3sy9yzcawn9yz5z4nyng43a0zrsa5v72cv695f";
url = "http://hydra.nixos.org/build/774404/download/4/${name}.tar.bz2";
sha256 = "cd2a75a04fc03dcafbab1d183e6ee485b491e17f1680bb7ee38738a2b1235932";
};
buildNativeInputs = [ perl ];
buildInputs = [ curl openssl ];
buildNativeInputs = [ perl pkgconfig ];
buildInputs = [ curl openssl boehmgc ];
configureFlags =
''
--with-store-dir=${storeDir} --localstatedir=${stateDir}
--with-bzip2=${bzip2}
--disable-init-state
--enable-gc
CFLAGS=-O3 CXXFLAGS=-O3
'';