sbcl: fix test failures in Darwin sandbox

This commit is contained in:
Andrew Marshall
2025-10-28 13:44:33 -04:00
parent be092d0c7b
commit 5c92e83cc5

View File

@@ -154,6 +154,10 @@ stdenv.mkDerivation (self: {
# Fail intermittently
"gc.impure.lisp"
"threads.pure.lisp"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# Fails in sandbox
"sb-posix.impure.lisp"
];
patches =
@@ -288,6 +292,8 @@ stdenv.mkDerivation (self: {
''
);
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Common Lisp compiler";
homepage = "https://sbcl.org";