File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ in recurseIntoAttrs {
2424 || stdenv . hostPlatform . isMusl
2525 || stdenv . hostPlatform . isGhcjs
2626 || stdenv . hostPlatform . isWindows
27- || ( haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 )
28- || ( haskellLib . isCrossHost && stdenv . hostPlatform . isArmv7 ) ;
27+ || ( haskellLib . isCrossHost && ( stdenv . hostPlatform . isAarch64 || stdenv . hostPlatform . isAarch32 ) ) ;
2928 build = packages . test . components . library ;
3029}
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ in recurseIntoAttrs {
5656 meta . disabled = stdenv . hostPlatform . isMusl
5757 || stdenv . hostPlatform . isGhcjs
5858 || stdenv . hostPlatform . isWindows
59- || ( haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 ) ;
59+ || ( haskellLib . isCrossHost && ( stdenv . hostPlatform . isAarch64 || stdenv . hostPlatform . isAarch32 ) ) ;
6060 inherit env envPkga envDefault ;
6161 run = stdenv . mkDerivation {
6262 name = "shell-for-test" ;
You can’t perform that action at this time.
0 commit comments