Skip to content

Commit a13ec5d

Browse files
authored
gnat-bootstrap12: restrict platforms (#394842)
2 parents 3eeaa42 + 9adf6e5 commit a13ec5d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkgs/development/compilers/gnat-bootstrap/default.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@ in {
197197
homepage = "https://www.gnu.org/software/gnat";
198198
license = licenses.gpl3;
199199
maintainers = with maintainers; [ ethindp ];
200-
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" ];
200+
platforms = [ "x86_64-linux" "x86_64-darwin" ]
201+
++ lib.optionals (lib.versionAtLeast majorVersion "14") [ "aarch64-linux" ];
201202
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
202203
};
203204
})

0 commit comments

Comments
 (0)