From ae1d80dccabff1e9924024b207101ce6e584a37e Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 6 Sep 2021 04:18:50 +0200 Subject: [PATCH] release-python.nix: add aarch64-linux Reduce the number of surprises when we go from staging to staging-next with python-unstable. --- pkgs/top-level/release-python.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; }; } }: