File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ in recurseIntoAttrs {
24
24
|| stdenv . hostPlatform . isMusl
25
25
|| stdenv . hostPlatform . isGhcjs
26
26
|| stdenv . hostPlatform . isWindows
27
- || ( haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 )
28
- || ( haskellLib . isCrossHost && stdenv . hostPlatform . isArmv7 ) ;
27
+ || ( haskellLib . isCrossHost && ( stdenv . hostPlatform . isAarch64 || stdenv . hostPlatform . isAarch32 ) ) ;
29
28
build = packages . test . components . library ;
30
29
}
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ in recurseIntoAttrs {
56
56
meta . disabled = stdenv . hostPlatform . isMusl
57
57
|| stdenv . hostPlatform . isGhcjs
58
58
|| stdenv . hostPlatform . isWindows
59
- || ( haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 ) ;
59
+ || ( haskellLib . isCrossHost && ( stdenv . hostPlatform . isAarch64 || stdenv . hostPlatform . isAarch32 ) ) ;
60
60
inherit env envPkga envDefault ;
61
61
run = stdenv . mkDerivation {
62
62
name = "shell-for-test" ;
You can’t perform that action at this time.
0 commit comments