From b4f5750005be14421ada1b527e3f826709add110 Mon Sep 17 00:00:00 2001 From: bennofs Date: Mon, 15 Mar 2021 15:04:53 +0000 Subject: [PATCH] haskell-network_2_6_3_1: disable test suite MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The package is missing required files for the test suite. This fixes the following build error: ``` Building test suite 'regression' for network-2.6.3.1.. [1 of 1] Compiling Main ( tests/Regression.hs, dist/build/regression/regression-tmp/Main.o ) tests/Regression.hs:12:1: error: Could not find module ‘Regression.Issue215’ Use -v (or `:set -v` in ghci) to see a list of the files searched for. | 12 | import qualified Regression.Issue215 as Issue215 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ``` --- pkgs/development/haskell-modules/configuration-common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index ad242777ec1c..f273628dac05 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -339,6 +339,7 @@ self: super: { nats-queue = dontCheck super.nats-queue; netpbm = dontCheck super.netpbm; network = dontCheck super.network; + network_2_6_3_1 = dontCheck super.network_2_6_3_1; # package is missing files for test network-dbus = dontCheck super.network-dbus; notcpp = dontCheck super.notcpp; ntp-control = dontCheck super.ntp-control;