summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
diff options
context:
space:
mode:
authorNathan van Doorn <nathan@myrtlesoftware.com>2019-02-13 17:39:16 +0000
committerNathan van Doorn <nathan@myrtlesoftware.com>2019-02-13 17:39:16 +0000
commit86c5937bcb97bfce55c5b3e3edabd7c6521a1637 (patch)
tree98927dee348279729b18f663b205bfecdab4c44f /pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
parent58d69519718d71f5794c87404bac4ee44b16a5cd (diff)
downloadnixpkgs-86c5937bcb97bfce55c5b3e3edabd7c6521a1637.tar
nixpkgs-86c5937bcb97bfce55c5b3e3edabd7c6521a1637.tar.gz
nixpkgs-86c5937bcb97bfce55c5b3e3edabd7c6521a1637.tar.bz2
nixpkgs-86c5937bcb97bfce55c5b3e3edabd7c6521a1637.tar.lz
nixpkgs-86c5937bcb97bfce55c5b3e3edabd7c6521a1637.tar.xz
nixpkgs-86c5937bcb97bfce55c5b3e3edabd7c6521a1637.tar.zst
nixpkgs-86c5937bcb97bfce55c5b3e3edabd7c6521a1637.zip
haskellPackages.equivalence: dontCheck in GHC 8.6
The test suite fails due to MonadFail changes
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
index b6aae3d8e73..b5d325e42b3 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
@@ -49,6 +49,7 @@ self: super: {
   data-clist = doJailbreak super.data-clist;  # won't cope with QuickCheck 2.12.x
   dates = doJailbreak super.dates; # base >=4.9 && <4.12
   Diff = dontCheck super.Diff;
+  equivalence = dontCheck super.equivalence; # test suite doesn't compile https://github.com/pa-ba/equivalence/issues/5
   HaTeX = doJailbreak super.HaTeX; # containers >=0.4 && <0.6 is too tight; https://github.com/Daniel-Diaz/HaTeX/issues/126
   hpc-coveralls = doJailbreak super.hpc-coveralls; # https://github.com/guillaume-nargeot/hpc-coveralls/issues/82
   http-api-data = doJailbreak super.http-api-data;