lol

lib.systems.supported: remove aarch64-darwin from Tier 3 list

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.

+3 -2
+3 -2
lib/systems/supported.nix
··· 4 4 { lib }: 5 5 rec { 6 6 # List of systems that are built by Hydra. 7 - hydra = tier1 ++ tier2 ++ tier3; 7 + hydra = tier1 ++ tier2 ++ tier3 ++ [ 8 + "aarch64-darwin" 9 + ]; 8 10 9 11 tier1 = [ 10 12 "x86_64-linux" ··· 16 18 ]; 17 19 18 20 tier3 = [ 19 - "aarch64-darwin" 20 21 "armv6l-linux" 21 22 "armv7l-linux" 22 23 "i686-linux"