about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-01-29 13:50:03 +0100
committerPeter Simons <simons@cryp.to>2018-01-31 16:03:59 +0100
commit6f93e0f749614ce8a02c0b8b09ef63208a8ec9ad (patch)
tree90bd007f275627b11ad4c439274492cdbd8b08ab
parent866a1ed2d5a31ac0b8a208c7c57e826b776fb7fa (diff)
downloadnixlib-6f93e0f749614ce8a02c0b8b09ef63208a8ec9ad.tar
nixlib-6f93e0f749614ce8a02c0b8b09ef63208a8ec9ad.tar.gz
nixlib-6f93e0f749614ce8a02c0b8b09ef63208a8ec9ad.tar.bz2
nixlib-6f93e0f749614ce8a02c0b8b09ef63208a8ec9ad.tar.lz
nixlib-6f93e0f749614ce8a02c0b8b09ef63208a8ec9ad.tar.xz
nixlib-6f93e0f749614ce8a02c0b8b09ef63208a8ec9ad.tar.zst
nixlib-6f93e0f749614ce8a02c0b8b09ef63208a8ec9ad.zip
fix GHC 8.4.x builds of hspec and test-framework
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
index 03e42463fee6..49c8ac0d0050 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
@@ -41,4 +41,9 @@ self: super: {
   transformers = null;
   unix = null;
   xhtml = null;
+
+  # GHC 8.4.x needs newer versions than LTS-10.x offers by default.
+  hspec = dontCheck super.hspec_2_4_7;        # test suite causes an infinite loop
+  test-framework = self.test-framework_0_8_2_0;
+
 }