Skip to content

Commit

Permalink
haskellPackages.coordinate: Fix build on ghc 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shlevy committed Dec 22, 2017
1 parent e32bc0b commit ea9b677
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
Expand Up @@ -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;
}

0 comments on commit ea9b677

Please sign in to comment.