aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2021-06-29 13:52:14 +0200
committerGitHub <noreply@github.com>2021-06-29 13:52:14 +0200
commitf14c3b6f68bca44e014a9f460827519610e773b2 (patch)
tree6cb614b1594fa35e87047c74fdf9d74e3b63f2a7 /flake.nix
parent81535022dcf80ad43ba8b8bfa2549858431b601f (diff)
parent5c58d84a76d96f269e3ff1e72c9c9ba5f68576af (diff)
Merge pull request #4944 from hercules-ci/fix-gc-crash
Fix gc crash
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index c97130ac9..999028ec2 100644
--- a/flake.nix
+++ b/flake.nix
@@ -104,7 +104,13 @@
});
propagatedDeps =
- [ (boehmgc.override { enableLargeConfig = true; })
+ [ ((boehmgc.override {
+ enableLargeConfig = true;
+ }).overrideAttrs(o: {
+ patches = (o.patches or []) ++ [
+ ./boehmgc-coroutine-sp-fallback.diff
+ ];
+ }))
];
perlDeps =