summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2021-12-14 02:40:06 +0100
committersterni <sternenseemann@systemli.org>2021-12-16 17:51:21 +0100
commit9066c52e5ae8eebac0593bf807faa2c38387ffb1 (patch)
tree969c10a5aafe98a1e93d692243b9cfdae24bf7c0 /lib
parent1ad7d1a40bb236eb0bdb68eacabd84f520b75a54 (diff)
downloadnixpkgs-9066c52e5ae8eebac0593bf807faa2c38387ffb1.tar
nixpkgs-9066c52e5ae8eebac0593bf807faa2c38387ffb1.tar.gz
nixpkgs-9066c52e5ae8eebac0593bf807faa2c38387ffb1.tar.bz2
nixpkgs-9066c52e5ae8eebac0593bf807faa2c38387ffb1.tar.lz
nixpkgs-9066c52e5ae8eebac0593bf807faa2c38387ffb1.tar.xz
nixpkgs-9066c52e5ae8eebac0593bf807faa2c38387ffb1.tar.zst
nixpkgs-9066c52e5ae8eebac0593bf807faa2c38387ffb1.zip
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.
Diffstat (limited to 'lib')
-rw-r--r--lib/systems/supported.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/systems/supported.nix b/lib/systems/supported.nix
index ef429454f04..a1c038a5c8b 100644
--- a/lib/systems/supported.nix
+++ b/lib/systems/supported.nix
@@ -4,7 +4,9 @@
 { lib }:
 rec {
   # List of systems that are built by Hydra.
-  hydra = tier1 ++ tier2 ++ tier3;
+  hydra = tier1 ++ tier2 ++ tier3 ++ [
+    "aarch64-darwin"
+  ];
 
   tier1 = [
     "x86_64-linux"
@@ -16,7 +18,6 @@ rec {
   ];
 
   tier3 = [
-    "aarch64-darwin"
     "armv6l-linux"
     "armv7l-linux"
     "i686-linux"