diff options
author | Gabriella Gonzalez | 2021-12-22 12:42:14 -0800 |
---|---|---|
committer | GitHub | 2021-12-22 21:42:14 +0100 |
commit | 21a3136d25e1652cb32197445e9799e6a5154588 (patch) | |
tree | 136c7a0e68ad142ab41de6eea588cb0bc811e8d2 /pkgs/development/haskell-modules/configuration-arm.nix | |
parent | c938684c3bd06d12e1c40a0c8f6557a6972c7c51 (diff) |
haskellPackages.happy_1_19_12: Disable tests
This disable the tests for the same reason as `haskellPackages.happy` (see the link in the associated comment). `happy_1_19_12` is used specifically by GHCJS on `aarch64-darwin`, which is why this additional `dontCheck` is required.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-arm.nix')
-rw-r--r-- | pkgs/development/haskell-modules/configuration-arm.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-arm.nix b/pkgs/development/haskell-modules/configuration-arm.nix index 29a962270559..9e95e0bdad2a 100644 --- a/pkgs/development/haskell-modules/configuration-arm.nix +++ b/pkgs/development/haskell-modules/configuration-arm.nix @@ -36,6 +36,7 @@ self: super: { # Similar to https://ghc.haskell.org/trac/ghc/ticket/13062 happy = dontCheck super.happy; + happy_1_19_12 = doDistribute (dontCheck super.happy_1_19_12); } // lib.optionalAttrs pkgs.stdenv.hostPlatform.isAarch64 { # AARCH64-SPECIFIC OVERRIDES |