diff --git a/overlay/fixes.nix b/overlay/fixes.nix index d9dd34b..eda27ba 100644 --- a/overlay/fixes.nix +++ b/overlay/fixes.nix @@ -23,6 +23,13 @@ in { }; }; } // optionalAttrs hostPlatform.isRiscV64 ({ + boehmgc = prev.boehmgc.overrideAttrs (prevAttrs: { + postPatch = prevAttrs.postPatch or "" + '' + sed -E -i '/^TESTS \+= gctest/d' \ + tests/tests.am + ''; + }); + libuv = prev.libuv.overrideAttrs ({ doCheck = false; });