about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-darwin.nix
diff options
context:
space:
mode:
authorDennis Gosnell <cdep.illabout@gmail.com>2022-04-30 12:05:26 +0900
committerDennis Gosnell <cdep.illabout@gmail.com>2022-04-30 12:05:26 +0900
commit50bdc1e59e82ea018d62491a1ba2634926ac5bb6 (patch)
tree99c0fc97924418abd8fca2f319e293de54bd6e3b /pkgs/development/haskell-modules/configuration-darwin.nix
parent2ec636df25be27ce552c97b2d9b728513223daf1 (diff)
haskellPackages.regex-rure: disable tests only on x86_64-darwin
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-darwin.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-darwin.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-darwin.nix b/pkgs/development/haskell-modules/configuration-darwin.nix
index f8ae9807cd1d1..3471e874290b9 100644
--- a/pkgs/development/haskell-modules/configuration-darwin.nix
+++ b/pkgs/development/haskell-modules/configuration-darwin.nix
@@ -290,4 +290,10 @@ self: super: ({
 
   # https://github.com/haskell-crypto/cryptonite/issues/360
   cryptonite = appendPatch ./patches/cryptonite-remove-argon2.patch super.cryptonite;
+
+} // lib.optionalAttrs pkgs.stdenv.isx86_64 {  # x86_64-darwin
+
+  # tests appear to be failing to link or something:
+  # https://hydra.nixos.org/build/174540882/nixlog/9
+  regex-rure = dontCheck super.regex-rure;
 })