Build with large config Boehm GC

This commit is contained in:
Eelco Dolstra 2020-02-15 21:48:28 +01:00
parent 7072b8649a
commit 144bb3ef7d

View file

@ -69,7 +69,7 @@
buildDeps =
[ curl
bzip2 xz brotli zlib editline
openssl pkgconfig sqlite boehmgc
openssl pkgconfig sqlite
libarchive
boost
(nlohmann_json.override { multipleHeaders = true; })
@ -88,6 +88,10 @@
customMemoryManagement = false;
});
propagatedDeps =
[ (boehmgc.override { enableLargeConfig = true; })
];
perlDeps =
[ perl
perlPackages.DBDSQLite
@ -108,6 +112,8 @@
buildInputs = buildDeps;
propagatedBuildInputs = propagatedDeps;
preConfigure =
# Copy libboost_context so we don't get all of Boost in our closure.
# https://github.com/NixOS/nixpkgs/issues/45462
@ -219,7 +225,7 @@
src = self;
inherit officialRelease;
buildInputs = tarballDeps ++ buildDeps;
buildInputs = tarballDeps ++ buildDeps ++ propagatedDeps;
postUnpack = ''
(cd $sourceRoot && find . -type f) | cut -c3- > $sourceRoot/.dist-files
@ -358,7 +364,7 @@
enableParallelBuilding = true;
buildInputs = buildDeps;
buildInputs = buildDeps ++ propagatedDeps;
dontInstall = false;
@ -503,7 +509,7 @@
stdenv.mkDerivation {
name = "nix";
buildInputs = buildDeps ++ tarballDeps ++ perlDeps ++ [ pkgs.rustfmt ];
buildInputs = buildDeps ++ propagatedDeps ++ tarballDeps ++ perlDeps ++ [ pkgs.rustfmt ];
inherit configureFlags;