summaryrefslogtreecommitdiffstats
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
parentfb6cf2524b06eebdd45a7418684396ac86bfc94a (diff)
release-python.nix: add aarch64-linux
Reduce the number of surprises when we go from staging to staging-next with python-unstable.
-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 485410356048..af492cc4b987 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; }; }
}: