summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2021-03-19 20:45:51 +0100
committerPeter Simons <simons@cryp.to>2021-03-19 20:45:51 +0100
commitf17596c260174ce488ed1b9542f696de352d2438 (patch)
treed4b6f56ba80f93751d85194c2ef90c98234e5d92 /pkgs/development/haskell-modules
parent27abb2ef12d5db4b4520573d726e7e8e4d725a78 (diff)
downloadnixpkgs-f17596c260174ce488ed1b9542f696de352d2438.tar
nixpkgs-f17596c260174ce488ed1b9542f696de352d2438.tar.gz
nixpkgs-f17596c260174ce488ed1b9542f696de352d2438.tar.bz2
nixpkgs-f17596c260174ce488ed1b9542f696de352d2438.tar.lz
nixpkgs-f17596c260174ce488ed1b9542f696de352d2438.tar.xz
nixpkgs-f17596c260174ce488ed1b9542f696de352d2438.tar.zst
nixpkgs-f17596c260174ce488ed1b9542f696de352d2438.zip
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.
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 481794c44a9..0bfe615c31b 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