summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-12-11 14:33:32 +0100
committerPeter Simons <simons@cryp.to>2017-12-11 18:46:41 +0100
commitb0ca52b24c5c5b6319f46598f56ccf22e01f1a86 (patch)
tree1d3e91d04e347d297858a08ff364ebb64abeeac9 /pkgs
parent56ebd9129956339ab98ba2f40cb233df0735f5a1 (diff)
downloadnixlib-b0ca52b24c5c5b6319f46598f56ccf22e01f1a86.tar
nixlib-b0ca52b24c5c5b6319f46598f56ccf22e01f1a86.tar.gz
nixlib-b0ca52b24c5c5b6319f46598f56ccf22e01f1a86.tar.bz2
nixlib-b0ca52b24c5c5b6319f46598f56ccf22e01f1a86.tar.lz
nixlib-b0ca52b24c5c5b6319f46598f56ccf22e01f1a86.tar.xz
nixlib-b0ca52b24c5c5b6319f46598f56ccf22e01f1a86.tar.zst
nixlib-b0ca52b24c5c5b6319f46598f56ccf22e01f1a86.zip
haskell-hpack: new versions need latest HUnit to compile their test suite
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 172ce5deacf2..95feb3e8e91f 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -999,4 +999,10 @@ self: super: {
     libraryToolDepends = drv.libraryToolDepends or [] ++ [pkgs.postgresql];
     testToolDepends = drv.testToolDepends or [] ++ [pkgs.procps];
   });
+
+  # Newer hpack's needs newer HUnit, but we cannot easily override the version
+  # used in the build, so we take the easy way out and disable the test suite.
+  hpack_0_20_0 = dontCheck super.hpack_0_20_0;
+  hpack_0_21_0 = dontCheck super.hpack_0_21_0;
+
 }