From 2cc57f81ec8d5214f024b0bdd2eb8cdad4e719be Mon Sep 17 00:00:00 2001 From: Richard Marko Date: Mon, 27 Jul 2020 10:31:43 +0200 Subject: [PATCH] haskellPackages.haskeline_0_8_0_0: add dontCheck Testsuite is trying to access executable which is part of the package being built. --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 8810444cce64..dc5ce78461d6 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1451,4 +1451,7 @@ self: super: { }; }; + # Testsuite trying to run `which haskeline-examples-Test` + haskeline_0_8_0_0 = dontCheck super.haskeline_0_8_0_0; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super