9066c52e5a
While it is a fact of life that aarch64-darwin is built on Hydra, it has never formally been elevated from the Tier 7 state it was originally assigned in RFC 0046. Since platform Tier status is not only descriptive, but also normative, a consensus to commit to supporting aarch64-darwin would need to be reached.
27 lines
451 B
Nix
27 lines
451 B
Nix
# Supported systems according to RFC0046's definition.
|
|
#
|
|
# https://github.com/NixOS/rfcs/blob/master/rfcs/0046-platform-support-tiers.md
|
|
{ lib }:
|
|
rec {
|
|
# List of systems that are built by Hydra.
|
|
hydra = tier1 ++ tier2 ++ tier3 ++ [
|
|
"aarch64-darwin"
|
|
];
|
|
|
|
tier1 = [
|
|
"x86_64-linux"
|
|
];
|
|
|
|
tier2 = [
|
|
"aarch64-linux"
|
|
"x86_64-darwin"
|
|
];
|
|
|
|
tier3 = [
|
|
"armv6l-linux"
|
|
"armv7l-linux"
|
|
"i686-linux"
|
|
"mipsel-linux"
|
|
];
|
|
}
|