haskellPackages.snap: fix tests on darwin with sandbox

This commit is contained in:
Alexandre Esteves 2024-11-01 03:18:57 +00:00
parent 3a826649ee
commit d2b766c1b1

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;
});