summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2020-02-27 13:55:11 +0100
committerPeter Simons <simons@cryp.to>2020-02-28 20:42:26 +0100
commitba190861e8789918a1f828b85759ad418c6aa76a (patch)
tree52df10f727f317bcf05c15ce59f4166b4f57be6a /pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
parent95f15e7b3140904fe37d6503e5fdc01a21e25831 (diff)
downloadnixpkgs-ba190861e8789918a1f828b85759ad418c6aa76a.tar
nixpkgs-ba190861e8789918a1f828b85759ad418c6aa76a.tar.gz
nixpkgs-ba190861e8789918a1f828b85759ad418c6aa76a.tar.bz2
nixpkgs-ba190861e8789918a1f828b85759ad418c6aa76a.tar.lz
nixpkgs-ba190861e8789918a1f828b85759ad418c6aa76a.tar.xz
nixpkgs-ba190861e8789918a1f828b85759ad418c6aa76a.tar.zst
nixpkgs-ba190861e8789918a1f828b85759ad418c6aa76a.zip
haskell-relude: avoid test suite failure when building with ghc-8.8.x
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
index 3775f476454..3160dfdd2d6 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
@@ -94,4 +94,7 @@ self: super: {
   # Upstream ships a broken Setup.hs file.
   csv = overrideCabal super.csv (drv: { prePatch = "rm Setup.hs"; });
 
+  # https://github.com/kowainik/relude/issues/241
+  relude = dontCheck super.relude;
+
 }