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.nix | |
parent | f46bc0e8eb079f7d2613bfabfbcff31f4401b42c (diff) |
Build with large config Boehm GC
Diffstat (limited to 'release.nix')
-rw-r--r-- | release.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/release.nix b/release.nix index 3dc12cd81..fdf7d0174 100644 --- a/release.nix +++ b/release.nix @@ -67,7 +67,7 @@ let src = nix; inherit officialRelease; - buildInputs = tarballDeps ++ buildDeps; + buildInputs = tarballDeps ++ buildDeps ++ propagatedDeps; postUnpack = '' (cd $sourceRoot && find . -type f) | cut -c3- > $sourceRoot/.dist-files @@ -111,6 +111,8 @@ let 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 @@ -244,7 +246,7 @@ let enableParallelBuilding = true; - buildInputs = buildDeps; + buildInputs = buildDeps ++ propagatedDeps; dontInstall = false; |