* nixUnstable updated, now with garbage collector.
svn path=/nixpkgs/trunk/; revision=24943
This commit is contained in:
parent
a772452fc9
commit
f088bd4791
@ -1,24 +1,26 @@
|
|||||||
{ stdenv, fetchurl, perl, curl, bzip2, openssl ? null
|
{ stdenv, fetchurl, perl, curl, bzip2, openssl ? null
|
||||||
|
, pkgconfig, boehmgc
|
||||||
, storeDir ? "/nix/store"
|
, storeDir ? "/nix/store"
|
||||||
, stateDir ? "/nix/var"
|
, stateDir ? "/nix/var"
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "nix-1.0pre24122";
|
name = "nix-1.0pre24855";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://hydra.nixos.org/build/667798/download/4/${name}.tar.bz2";
|
url = "http://hydra.nixos.org/build/774404/download/4/${name}.tar.bz2";
|
||||||
sha256 = "0rz9radz4452bp3sy9yzcawn9yz5z4nyng43a0zrsa5v72cv695f";
|
sha256 = "cd2a75a04fc03dcafbab1d183e6ee485b491e17f1680bb7ee38738a2b1235932";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildNativeInputs = [ perl ];
|
buildNativeInputs = [ perl pkgconfig ];
|
||||||
buildInputs = [ curl openssl ];
|
buildInputs = [ curl openssl boehmgc ];
|
||||||
|
|
||||||
configureFlags =
|
configureFlags =
|
||||||
''
|
''
|
||||||
--with-store-dir=${storeDir} --localstatedir=${stateDir}
|
--with-store-dir=${storeDir} --localstatedir=${stateDir}
|
||||||
--with-bzip2=${bzip2}
|
--with-bzip2=${bzip2}
|
||||||
--disable-init-state
|
--disable-init-state
|
||||||
|
--enable-gc
|
||||||
CFLAGS=-O3 CXXFLAGS=-O3
|
CFLAGS=-O3 CXXFLAGS=-O3
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user