haskellPackages.regex-rure: disable tests only on x86_64-darwin

This commit is contained in:
Dennis Gosnell 2022-04-30 12:05:26 +09:00
parent 2ec636df25
commit 50bdc1e59e
No known key found for this signature in database
GPG key ID: 462E0C03D11422F4

View file

@ -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;
})