about summary refs log tree commit diff
path: root/pkgs/top-level/release-python.nix
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-09-06 04:18:50 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-10-11 01:22:09 +0200
commitae1d80dccabff1e9924024b207101ce6e584a37e (patch)
tree3176fbb137d410273225ac3868fa7914365ba908 /pkgs/top-level/release-python.nix
parentfb6cf2524b06eebdd45a7418684396ac86bfc94a (diff)
release-python.nix: add aarch64-linux
Reduce the number of surprises when we go from staging to staging-next
with python-unstable.
Diffstat (limited to 'pkgs/top-level/release-python.nix')
-rw-r--r--pkgs/top-level/release-python.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/top-level/release-python.nix b/pkgs/top-level/release-python.nix
index 4854103560487..af492cc4b987f 100644
--- a/pkgs/top-level/release-python.nix
+++ b/pkgs/top-level/release-python.nix
@@ -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; }; }
 }: