about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-09-28 12:09:50 +0200
committerPeter Simons <simons@cryp.to>2018-09-28 12:11:20 +0200
commitc917407575edab32c695c23c972fb4a85d795196 (patch)
tree47a6e578ff1d849aed07644f34c1cdb8fb8902c8 /pkgs/development/haskell-modules
parent487f7f458a278ee0b2cf12ff11b4f72ad55d3ea4 (diff)
downloadnixlib-c917407575edab32c695c23c972fb4a85d795196.tar
nixlib-c917407575edab32c695c23c972fb4a85d795196.tar.gz
nixlib-c917407575edab32c695c23c972fb4a85d795196.tar.bz2
nixlib-c917407575edab32c695c23c972fb4a85d795196.tar.lz
nixlib-c917407575edab32c695c23c972fb4a85d795196.tar.xz
nixlib-c917407575edab32c695c23c972fb4a85d795196.tar.zst
nixlib-c917407575edab32c695c23c972fb4a85d795196.zip
haskell-texmath: patch to fix build with ghc-8.6.x
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix6
1 files changed, 6 insertions, 0 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 27a82a20fb91..dbe3bafc41b3 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
@@ -79,4 +79,10 @@ self: super: {
   # https://github.com/haskell/fgl/issues/81
   fgl = appendPatch super.fgl ./patches/fgl-monad-fail.patch;
 
+  # https://github.com/jgm/texmath/pull/121
+  texmath = appendPatch (doJailbreak super.texmath) (pkgs.fetchpatch
+            { url = https://github.com/jgm/texmath/pull/121.patch;
+              sha256 = "14pz2cpz9rvmy7mlmnz8iz76rsdyv5v442ij2i8k9zrbxj6nai7l";
+            });
+
 }