-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib: add list of supported systems (#140428)
Adds the first 3 tiers of RFC0046 that are being used in flake.nix.
- Loading branch information
Showing
3 changed files
with
26 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# 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; | ||
|
||
tier1 = [ | ||
"x86_64-linux" | ||
]; | ||
|
||
tier2 = [ | ||
"aarch64-linux" | ||
"x86_64-darwin" | ||
]; | ||
|
||
tier3 = [ | ||
"armv6l-linux" | ||
"armv7l-linux" | ||
"i686-linux" | ||
"mipsel-linux" | ||
]; | ||
} |