1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00

release-python.nix: add aarch64-linux

Reduce the number of surprises when we go from staging to staging-next
with python-unstable.
This commit is contained in:
Martin Weinelt 2021-09-06 04:18:50 +02:00
parent fb6cf2524b
commit ae1d80dcca

View file

@ -4,7 +4,10 @@
*/
{ # The platforms for which we build Nixpkgs.
supportedSystems ? [ "x86_64-linux" ]
supportedSystems ? [
"aarch64-linux"
"x86_64-linux"
]
, # Attributes passed to nixpkgs. Don't build packages marked as unfree.
nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; }
}: