0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

haskellPackages: fix test suites on multiple stream libraries

This commit is contained in:
Alexandre Esteves 2024-11-15 23:31:22 +00:00
parent ec3ec6038a
commit a3775eb57d

View file

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