about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-03-20 11:37:06 +0100
committerPeter Simons <simons@cryp.to>2015-03-21 19:44:12 +0100
commit16b9fd71f9a2b7bdde243d2b1afad694f3e58559 (patch)
tree592a74327d9a4cfad4a5ec342554ded8d563f34a /pkgs/development/haskell-modules
parent61b1ef496f48cd69d42987455a530fe2dc475428 (diff)
downloadnixlib-16b9fd71f9a2b7bdde243d2b1afad694f3e58559.tar
nixlib-16b9fd71f9a2b7bdde243d2b1afad694f3e58559.tar.gz
nixlib-16b9fd71f9a2b7bdde243d2b1afad694f3e58559.tar.bz2
nixlib-16b9fd71f9a2b7bdde243d2b1afad694f3e58559.tar.lz
nixlib-16b9fd71f9a2b7bdde243d2b1afad694f3e58559.tar.xz
nixlib-16b9fd71f9a2b7bdde243d2b1afad694f3e58559.tar.zst
nixlib-16b9fd71f9a2b7bdde243d2b1afad694f3e58559.zip
haskell-ansi-wl-pprint: fix the build with ghc-7.10.x
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index a70597e6ee52..34204d6462f4 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -125,4 +125,10 @@ self: super: {
     sha256 = "1fycvjfr1l9wa03k30bnppl3ns99lffh9kmp9r7sr8b6yiydcajq";
     stripLen = 1;
   });
+
+  # https://github.com/batterseapower/ansi-wl-pprint/issues/13
+  ansi-wl-pprint = appendPatch super.ansi-wl-pprint (pkgs.fetchpatch {
+    url = "https://github.com/hvr/ansi-wl-pprint/commit/7e489ea6b546899074b1cdccf37d2e49ab313098.patch";
+    sha256 = "111aasm6pb55prldzwzgfffd5zz1npl7akdzcwh2hsri865i1806";
+  });
 }