From cdc4398b7123a35b52428ba4cc5627f2096aee62 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 15 Feb 2019 14:57:46 +0100 Subject: [PATCH] Disable failing test suites for pandoc and tasty-hedgehog to fix builds. --- pkgs/development/haskell-modules/configuration-common.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index b6ba0d7ad50..0d5f5285b16 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1224,7 +1224,11 @@ self: super: { }); # Use latest pandoc despite what LTS says. - pandoc = self.pandoc_2_6; + # Test suite fails in both 2.5 and 2.6: https://github.com/jgm/pandoc/issues/5309. + pandoc = dontCheck super.pandoc_2_6; pandoc-citeproc = self.pandoc-citeproc_0_16_0_2; + # https://github.com/qfpl/tasty-hedgehog/issues/24 + tasty-hedgehog = dontCheck super.tasty-hedgehog; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super