From f17596c260174ce488ed1b9542f696de352d2438 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 19 Mar 2021 20:45:51 +0100 Subject: [PATCH] pandoc: disable the test suite to fix the build It seems like a recent update of a dependency has broken ~7 tests in Pandoc. Upstream is aware of the issue. --- 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 481794c44a97..0bfe615c31bf 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1669,4 +1669,7 @@ self: super: { # test suite doesn't compile anymore due to changed hunit/tasty APIs fullstop = dontCheck super.fullstop; + # https://github.com/jgm/pandoc/issues/7163 + pandoc = dontCheck super.pandoc; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super