haskellPackages.coordinate: Fix build on ghc 8.2

This commit is contained in:
Shea Levy 2017-12-22 14:04:59 -05:00
parent e32bc0b5c0
commit ea9b677046
No known key found for this signature in database
GPG key ID: 5C0BD6957D86FE27

View file

@ -84,4 +84,13 @@ self: super: {
stripLen = 1;
};
in appendPatch super.hadoop-rpc patch;
# Custom Setup.hs breaks with Cabal 2
# https://github.com/NICTA/coordinate/pull/4
coordinate =
let patch = pkgs.fetchpatch
{ url = https://github.com/NICTA/coordinate/pull/4.patch;
sha256 = "06sfxk5cyd8nqgjyb95jkihxxk8m6dw9m3mlv94sm2qwylj86gqy";
};
in appendPatch super.coordinate patch;
}