mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
haskellPackages.hadoop-rpc: Apply stack overflow patch on 8.4 as well.
This commit is contained in:
parent
38396acd3b
commit
2d32f7daa8
1 changed files with 10 additions and 0 deletions
|
@ -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;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue