summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2017-12-22 13:31:35 -0500
committerShea Levy <shea@shealevy.com>2017-12-22 13:31:35 -0500
commit4c66ebb0d1b2a195851b7c52658dc258c851df38 (patch)
tree3f2bc853b1edadb101241688a783f93693b0024d /pkgs
parent25ef9fa8756108fc2a6dc015c93717ea0106ebdc (diff)
downloadnixlib-4c66ebb0d1b2a195851b7c52658dc258c851df38.tar
nixlib-4c66ebb0d1b2a195851b7c52658dc258c851df38.tar.gz
nixlib-4c66ebb0d1b2a195851b7c52658dc258c851df38.tar.bz2
nixlib-4c66ebb0d1b2a195851b7c52658dc258c851df38.tar.lz
nixlib-4c66ebb0d1b2a195851b7c52658dc258c851df38.tar.xz
nixlib-4c66ebb0d1b2a195851b7c52658dc258c851df38.tar.zst
nixlib-4c66ebb0d1b2a195851b7c52658dc258c851df38.zip
hadoop-rpc: Fix build on ghc 8.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
index 2d3833fb2d88..b42bc8ff3428 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
@@ -75,4 +75,13 @@ self: super: {
   # https://github.com/alanz/ghc-exactprint/pull/60
   ghc-exactprint = dontCheck super.ghc-exactprint;
 
+  # 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;
 }