haskellPackages.warp: fix tests on darwin with sandbox (#352778)

This commit is contained in:
maralorn 2024-11-02 00:02:14 +01:00 committed by GitHub
commit 5f961513c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -331,6 +331,10 @@ self: super: ({
# Tests fail on macOS https://github.com/mrkkrp/zip/issues/112
zip = dontCheck super.zip;
snap = super.snap.overrideAttrs (drv: {
__darwinAllowLocalNetworking = true;
});
warp = super.warp.overrideAttrs (drv: {
__darwinAllowLocalNetworking = true;
});