summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2018-08-20 09:15:11 +0200
committerVladimír Čunát <vcunat@gmail.com>2018-08-20 09:15:33 +0200
commit153a19df05133657dd3025812a544f8961c41b12 (patch)
tree9974b86334e11ffa884610dd0999a62b78e0ee96 /pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
parentae2cf7c00877a3dd778b3e3cabfec682503303d5 (diff)
parent6755ab8b3442d6149e4bae5e142d516a506f6e45 (diff)
downloadnixpkgs-153a19df05133657dd3025812a544f8961c41b12.tar
nixpkgs-153a19df05133657dd3025812a544f8961c41b12.tar.gz
nixpkgs-153a19df05133657dd3025812a544f8961c41b12.tar.bz2
nixpkgs-153a19df05133657dd3025812a544f8961c41b12.tar.lz
nixpkgs-153a19df05133657dd3025812a544f8961c41b12.tar.xz
nixpkgs-153a19df05133657dd3025812a544f8961c41b12.tar.zst
nixpkgs-153a19df05133657dd3025812a544f8961c41b12.zip
Merge branch 'master' into staging-next
Hydra: ?compare=1474536
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 23dde909332..49c3623d5d6 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;
+
 }