Skip to content

Commit 090699a

Browse files
committed
Disable network tests.
1 parent 49fbe65 commit 090699a

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

default.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ with (builtins.fromJSON (builtins.readFile ./nixpkgs.json));
66
, compiler ? "ghc881"
77
}:
88
let
9-
overrides = self: super: { Diff = super.Diff_0_4_0; };
9+
overrides = with pkgs.haskell.lib;
10+
self: super: {
11+
network = dontCheck (super.network);
12+
network_3_1_1_1 = dontCheck (super.network_3_1_1_1);
13+
Diff = super.Diff_0_4_0;
14+
};
1015
ghc = pkgs.haskell.packages.${compiler}.override { inherit overrides; };
1116
language-ecmascript = ghc.callCabal2nix "language-ecmascript" ./. {};
1217
in

0 commit comments

Comments
 (0)