diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-02-15 21:48:28 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-02-18 17:57:10 +0100 |
commit | 583d06385de82ab5c7fc77d26cd138d3c6d5f4b5 (patch) | |
tree | 327eb0d46b1d65c1ac8c5525498fce804c79ec5b /release-common.nix | |
parent | f46bc0e8eb079f7d2613bfabfbcff31f4401b42c (diff) |
Build with large config Boehm GC
Diffstat (limited to 'release-common.nix')
-rw-r--r-- | release-common.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/release-common.nix b/release-common.nix index 60c8849d1..eb35d7917 100644 --- a/release-common.nix +++ b/release-common.nix @@ -48,7 +48,7 @@ rec { buildDeps = [ curl bzip2 xz brotli zlib editline - openssl pkgconfig sqlite boehmgc + openssl pkgconfig sqlite libarchive boost nlohmann_json @@ -73,6 +73,10 @@ rec { */ })); + propagatedDeps = + [ (boehmgc.override { enableLargeConfig = true; }) + ]; + perlDeps = [ perl perlPackages.DBDSQLite |