summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-07-13 23:39:17 -0500
committerWill Dietz <w@wdtz.org>2018-07-13 23:39:17 -0500
commita16b7dfb6a7fe8c9fead846751ed738e7faaadf4 (patch)
tree573f945e02e9a73118d5e06208959383b735bc56 /pkgs
parent5457be89fe65e302b0fefcbacbcdd52ef27f1c70 (diff)
downloadnixlib-a16b7dfb6a7fe8c9fead846751ed738e7faaadf4.tar
nixlib-a16b7dfb6a7fe8c9fead846751ed738e7faaadf4.tar.gz
nixlib-a16b7dfb6a7fe8c9fead846751ed738e7faaadf4.tar.bz2
nixlib-a16b7dfb6a7fe8c9fead846751ed738e7faaadf4.tar.lz
nixlib-a16b7dfb6a7fe8c9fead846751ed738e7faaadf4.tar.xz
nixlib-a16b7dfb6a7fe8c9fead846751ed738e7faaadf4.tar.zst
nixlib-a16b7dfb6a7fe8c9fead846751ed738e7faaadf4.zip
hpc-coveralls: patch to fix build (for Cabal 2.2)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index c7e7cd4f4c3f..dce0aa1dbaca 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1100,4 +1100,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";
+  });
 }