File tree 3 files changed +2
-4
lines changed
3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 15
15
in recurseIntoAttrs {
16
16
# DWARF only works on linux with GHC 8.10.2 and newer
17
17
# GHC 9.2.1 disabled because of https://github.com/input-output-hk/haskell.nix/issues/1332
18
- meta . disabled = __elem compiler-nix-name [ "ghc865" "ghc884" " ghc921" "ghc922" "ghc923" "ghc924" "ghc925" "ghc926" "ghc927" ]
18
+ meta . disabled = __elem compiler-nix-name [ "ghc921" "ghc922" "ghc923" "ghc924" "ghc925" "ghc926" "ghc927" ]
19
19
|| ! stdenv . hostPlatform . isLinux || haskellLib . isCrossHost || stdenv . hostPlatform . isMusl || stdenv . hostPlatform . isAarch64
20
20
|| lib . hasSuffix "llvm" compiler-nix-name ;
21
21
ifdInputs = {
Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ in recurseIntoAttrs {
41
41
touch $out
42
42
'' ;
43
43
meta . platforms = platforms . all ;
44
- meta . disabled = haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 ;
45
44
passthru = {
46
45
inherit project ;
47
46
} ;
Original file line number Diff line number Diff line change @@ -23,8 +23,7 @@ in recurseIntoAttrs {
23
23
inherit ( project ) plan-nix ;
24
24
} ;
25
25
26
- meta . disabled = stdenv . buildPlatform != stdenv . hostPlatform && stdenv . hostPlatform . isAarch64
27
- || builtins . elem compiler-nix-name [ "ghc91320241204" ]
26
+ meta . disabled = builtins . elem compiler-nix-name [ "ghc91320241204" ]
28
27
# unhandled ELF relocation(Rel) type 10
29
28
|| ( stdenv . hostPlatform . isMusl && stdenv . hostPlatform . isx86_32 ) ;
30
29
You can’t perform that action at this time.
0 commit comments