about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
author(cdep)illabout <cdep.illabout@gmail.com>2020-02-29 17:14:00 +0900
committerPeter Simons <simons@cryp.to>2020-03-06 22:15:12 +0100
commit7b6f436300ad458765c09a760d53a470449fcaf9 (patch)
treeece1ca21f009d518b8a8d56e06ef8342d4a4c08c /pkgs/development/haskell-modules
parent6fe6d3b07780e08d66b8a76158c65a61f8f06181 (diff)
downloadnixlib-7b6f436300ad458765c09a760d53a470449fcaf9.tar
nixlib-7b6f436300ad458765c09a760d53a470449fcaf9.tar.gz
nixlib-7b6f436300ad458765c09a760d53a470449fcaf9.tar.bz2
nixlib-7b6f436300ad458765c09a760d53a470449fcaf9.tar.lz
nixlib-7b6f436300ad458765c09a760d53a470449fcaf9.tar.xz
nixlib-7b6f436300ad458765c09a760d53a470449fcaf9.tar.zst
nixlib-7b6f436300ad458765c09a760d53a470449fcaf9.zip
haskellPackages.dhall_1_29_0: disable tests since they access the network
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index da63ec0c22a0..27391ed8bd4d 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -710,4 +710,8 @@ 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_1_29_0 = dontCheck super.dhall_1_29_0;
 }