about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2020-04-25 17:58:13 +0200
committerPeter Simons <simons@cryp.to>2020-04-25 18:06:42 +0200
commitc970de4586988fb104f4552f8dd5f83045ca9f72 (patch)
tree747208fd0e18bede382b762ee43e5ac931daddd1
parent9d0b4c05ed149ac2dc218a891e653a9039059859 (diff)
downloadnixlib-c970de4586988fb104f4552f8dd5f83045ca9f72.tar
nixlib-c970de4586988fb104f4552f8dd5f83045ca9f72.tar.gz
nixlib-c970de4586988fb104f4552f8dd5f83045ca9f72.tar.bz2
nixlib-c970de4586988fb104f4552f8dd5f83045ca9f72.tar.lz
nixlib-c970de4586988fb104f4552f8dd5f83045ca9f72.tar.xz
nixlib-c970de4586988fb104f4552f8dd5f83045ca9f72.tar.zst
nixlib-c970de4586988fb104f4552f8dd5f83045ca9f72.zip
haskell-dhall: disable the test suite
Dhall 1.31.x still attempts to access the network during its
test suite run, i.e. it attempts to connect to github.com.
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index ba885c0ecd5f..817037e1e436 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -720,10 +720,9 @@ self: super: builtins.intersectAttrs super {
   # break infinite recursion with base-orphans
   primitive = dontCheck super.primitive;
 
-  # dhall-1.29.0 tests access the network.  This override can be removed when
-  # dhall_1_29_0 is no longer used, since more recent versions of dhall don't
-  # access the network in checks.
+  # dhall's tests access the network.
   dhall_1_29_0 = dontCheck super.dhall_1_29_0;
+  dhall_1_31_1 = dontCheck super.dhall_1_31_1;
 
   cut-the-crap =
     let path = pkgs.stdenv.lib.makeBinPath [ pkgs.ffmpeg ];