about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2018-08-17 09:36:53 -0400
committerShea Levy <shea@shealevy.com>2018-08-17 09:36:53 -0400
commit2d32f7daa82f927fb3b4baa6c00789cec03d48d1 (patch)
treeed7eae2fad6a74996020326c8ceca384122fc9b8 /pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
parent38396acd3be4f5d3e71be10be5d0431d6a16f271 (diff)
downloadnixlib-2d32f7daa82f927fb3b4baa6c00789cec03d48d1.tar
nixlib-2d32f7daa82f927fb3b4baa6c00789cec03d48d1.tar.gz
nixlib-2d32f7daa82f927fb3b4baa6c00789cec03d48d1.tar.bz2
nixlib-2d32f7daa82f927fb3b4baa6c00789cec03d48d1.tar.lz
nixlib-2d32f7daa82f927fb3b4baa6c00789cec03d48d1.tar.xz
nixlib-2d32f7daa82f927fb3b4baa6c00789cec03d48d1.tar.zst
nixlib-2d32f7daa82f927fb3b4baa6c00789cec03d48d1.zip
haskellPackages.hadoop-rpc: Apply stack overflow patch on 8.4 as well.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
index 23dde9093324..49c3623d5d6b 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
@@ -46,4 +46,14 @@ self: super: {
   xmobar = super.xmobar.overrideScope (self: super: { hinotify = self.hinotify_0_3_9; });
   hinotify_0_3_9 = dontCheck (doJailbreak super.hinotify_0_3_9); # allow async 2.2.x
 
+  # Reduction stack overflow; size = 38
+  # https://github.com/jystic/hadoop-tools/issues/31
+  hadoop-rpc =
+    let patch = pkgs.fetchpatch
+          { url = https://github.com/shlevy/hadoop-tools/commit/f03a46cd15ce3796932c3382e48bcbb04a6ee102.patch;
+            sha256 = "09ls54zy6gx84fmzwgvx18ssgm740cwq6ds70p0p125phi54agcp";
+            stripLen = 1;
+          };
+    in appendPatch super.hadoop-rpc patch;
+
 }