Merge pull request #43509 from dtzWill/fix/hpc-coveralls-patch

hpc-coveralls: patch to fix build (for Cabal 2.2)
This commit is contained in:
Peter Simons 2018-07-20 09:13:04 +02:00 committed by GitHub
commit 65d209811a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1102,4 +1102,10 @@ self: super: {
unix-time = if pkgs.stdenv.hostPlatform.isMusl then dontCheck super.unix-time else super.unix-time;
# dontCheck: printf double rounding behavior
prettyprinter = if pkgs.stdenv.hostPlatform.isMusl then dontCheck super.prettyprinter else super.prettyprinter;
# Fix with Cabal 2.2, https://github.com/guillaume-nargeot/hpc-coveralls/pull/73
hpc-coveralls = appendPatch super.hpc-coveralls (pkgs.fetchpatch {
url = "https://github.com/guillaume-nargeot/hpc-coveralls/pull/73/commits/344217f513b7adfb9037f73026f5d928be98d07f.patch";
sha256 = "056rk58v9h114mjx62f41x971xn9p3nhsazcf9zrcyxh1ymrdm8j";
});
}