From c970de4586988fb104f4552f8dd5f83045ca9f72 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 25 Apr 2020 17:58:13 +0200 Subject: [PATCH] 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. --- pkgs/development/haskell-modules/configuration-nix.nix | 5 ++--- 1 file 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 ];