about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-01-04 12:55:09 +0100
committerPeter Simons <simons@cryp.to>2019-01-04 12:58:27 +0100
commitcce612a649059302ce6667dcd9a53629f6948218 (patch)
treef8f0d2882711180020cba2e15fb098e094a1d3d8 /pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
parent22c495bb28f148e3d4fb682d6ef349bfff639d59 (diff)
downloadnixlib-cce612a649059302ce6667dcd9a53629f6948218.tar
nixlib-cce612a649059302ce6667dcd9a53629f6948218.tar.gz
nixlib-cce612a649059302ce6667dcd9a53629f6948218.tar.bz2
nixlib-cce612a649059302ce6667dcd9a53629f6948218.tar.lz
nixlib-cce612a649059302ce6667dcd9a53629f6948218.tar.xz
nixlib-cce612a649059302ce6667dcd9a53629f6948218.tar.zst
nixlib-cce612a649059302ce6667dcd9a53629f6948218.zip
haskell-pandoc: jailbreak to fix the build
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
index fc6c8b43fa3e..0ca617bc6be6 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
@@ -59,7 +59,10 @@ self: super: {
   # https://github.com/jgm/skylighting/issues/55
   skylighting-core = dontCheck super.skylighting-core;
 
-  # Break out of "yaml >=0.10.4.0 && <0.11".
+  # Break out of "yaml >=0.10.4.0 && <0.11": https://github.com/commercialhaskell/stack/issues/4485
   stack = doJailbreak super.stack;
 
+  # Break out of "tasty >= 0.11 && < 1.2": https://github.com/jgm/pandoc/issues/5200
+  pandoc = doJailbreak super.pandoc;
+
 }