Skip dwarf version of ghc 9.2.1 on hydra (#1333)

See #1332
This commit is contained in:
Hamish Mackenzie 2022-01-05 03:12:21 +13:00 committed by GitHub
parent 5f2f567c0d
commit 11284e3fcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,8 @@ let
in recurseIntoAttrs {
# DWARF only works on linux with GHC 8.10.2 and newer
meta.disabled = __elem compiler-nix-name ["ghc865" "ghc884"]
# GHC 9.2.1 disabled because of https://github.com/input-output-hk/haskell.nix/issues/1332
meta.disabled = __elem compiler-nix-name ["ghc865" "ghc884" "ghc921"]
|| !stdenv.hostPlatform.isLinux || haskellLib.isCrossHost || stdenv.hostPlatform.isMusl;
ifdInputs = {
inherit (project) plan-nix;