summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2021-01-08 12:21:36 +0100
committerAndrew Childs <lorne@cons.org.nz>2021-05-17 00:27:02 +0900
commit1a2cb94c825448c03cda778a328f2e743af17443 (patch)
treed436981627e257a645ff38c27174366db03d14af /pkgs
parent3e7034abb9490e3eff4ec436317f3d6b5f52b8d7 (diff)
downloadnixpkgs-1a2cb94c825448c03cda778a328f2e743af17443.tar
nixpkgs-1a2cb94c825448c03cda778a328f2e743af17443.tar.gz
nixpkgs-1a2cb94c825448c03cda778a328f2e743af17443.tar.bz2
nixpkgs-1a2cb94c825448c03cda778a328f2e743af17443.tar.lz
nixpkgs-1a2cb94c825448c03cda778a328f2e743af17443.tar.xz
nixpkgs-1a2cb94c825448c03cda778a328f2e743af17443.tar.zst
nixpkgs-1a2cb94c825448c03cda778a328f2e743af17443.zip
hydra jobset support for aarch64-darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/release-lib.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/top-level/release-lib.nix b/pkgs/top-level/release-lib.nix
index 411093186a6..ceae00baec9 100644
--- a/pkgs/top-level/release-lib.nix
+++ b/pkgs/top-level/release-lib.nix
@@ -27,6 +27,7 @@ rec {
     pkgs_x86_64_linux = packageSet' { system = "x86_64-linux"; };
     pkgs_i686_linux = packageSet' { system = "i686-linux"; };
     pkgs_aarch64_linux = packageSet' { system = "aarch64-linux"; };
+    pkgs_aarch64_darwin = packageSet' { system = "aarch64-darwin"; };
     pkgs_armv6l_linux = packageSet' { system = "armv6l-linux"; };
     pkgs_armv7l_linux = packageSet' { system = "armv7l-linux"; };
     pkgs_x86_64_darwin = packageSet' { system = "x86_64-darwin"; };
@@ -39,6 +40,7 @@ rec {
       if system == "x86_64-linux" then pkgs_x86_64_linux
       else if system == "i686-linux" then pkgs_i686_linux
       else if system == "aarch64-linux" then pkgs_aarch64_linux
+      else if system == "aarch64-darwin" then pkgs_aarch64_darwin
       else if system == "armv6l-linux" then pkgs_armv6l_linux
       else if system == "armv7l-linux" then pkgs_armv7l_linux
       else if system == "x86_64-darwin" then pkgs_x86_64_darwin