From c917407575edab32c695c23c972fb4a85d795196 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 28 Sep 2018 12:09:50 +0200 Subject: [PATCH] haskell-texmath: patch to fix build with ghc-8.6.x --- .../development/haskell-modules/configuration-ghc-8.6.x.nix | 6 ++++++ 1 file changed, 6 insertions(+) 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 27a82a20fb9..dbe3bafc41b 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"; + }); + }