summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2020-10-25 07:37:45 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2020-10-25 15:59:31 +1000
commit10e961cdf942fb181bdb0bec8edbf0c6a95c17c1 (patch)
treef2407ccd5f2c3a54c2d9b0d64a6b173da4b2129b /pkgs
parentec6380c788dc0e0b9f7e4d6f1dae82a70c4f9f56 (diff)
downloadnixpkgs-10e961cdf942fb181bdb0bec8edbf0c6a95c17c1.tar
nixpkgs-10e961cdf942fb181bdb0bec8edbf0c6a95c17c1.tar.gz
nixpkgs-10e961cdf942fb181bdb0bec8edbf0c6a95c17c1.tar.bz2
nixpkgs-10e961cdf942fb181bdb0bec8edbf0c6a95c17c1.tar.lz
nixpkgs-10e961cdf942fb181bdb0bec8edbf0c6a95c17c1.tar.xz
nixpkgs-10e961cdf942fb181bdb0bec8edbf0c6a95c17c1.tar.zst
nixpkgs-10e961cdf942fb181bdb0bec8edbf0c6a95c17c1.zip
haskellPackages.trifecta: dontCheck on darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index adf5694d270..26cbf7f78c3 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -392,7 +392,9 @@ 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
+  # Aarch64 affected by this bug https://gitlab.haskell.org/ghc/ghc/-/issues/15275#note_295461
+  # Darwin https://hydra.nixos.org/build/129070963/nixlog/1
+  trifecta = if (pkgs.stdenv.hostPlatform.isAarch64 || pkgs.stdenv.isDarwin) then dontCheck super.trifecta else super.trifecta;
   ua-parser = dontCheck super.ua-parser;
   unagi-chan = dontCheck super.unagi-chan;
   wai-logger = dontCheck super.wai-logger;