From 1e99373cef39c063ea331128646f59c254d325bd Mon Sep 17 00:00:00 2001 From: Pyry Kontio Date: Tue, 25 Aug 2020 20:01:28 +0900 Subject: [PATCH] haskellPackages.trifecta: disable tests on AArch64 The tests tend to fail and prevent the build of packages that depend on this library, while the core reason for the test failure seems hard to fix at the moment. --- pkgs/development/haskell-modules/configuration-common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index c72800282a6..1915a15dab3 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -375,6 +375,7 @@ self: super: { tickle = dontCheck super.tickle; tpdb = dontCheck super.tpdb; translatable-intset = dontCheck super.translatable-intset; + trifecta = if pkgs.stdenv.hostPlatform.isAarch64 then dontCheck super.trifecta else super.trifecta; # affected by this bug https://gitlab.haskell.org/ghc/ghc/-/issues/15275#note_295461 ua-parser = dontCheck super.ua-parser; unagi-chan = dontCheck super.unagi-chan; wai-logger = dontCheck super.wai-logger;