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:
parent
ec3ec6038a
commit
a3775eb57d
1 changed files with 16 additions and 0 deletions
|
@ -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;
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue