diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-05-23 21:51:36 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-05-23 21:51:36 +0300 |
commit | 59d0f067ff9f830d9438d5337ee71120e9694410 (patch) | |
tree | 4efd4152a1fc6b8c22c0dd3129573e69069f59af /guix | |
parent | db375739dac31360f5ca945ff06edfd952595cc5 (diff) | |
download | gnu-guix-59d0f067ff9f830d9438d5337ee71120e9694410.tar gnu-guix-59d0f067ff9f830d9438d5337ee71120e9694410.tar.gz |
packages: Add aarch64-linux to %supported-systems.
* guix/packages.scm (%supported-systems): Add aarch64-linux.
(%hydra-supported-systems): Remove aarch64-linux.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/packages.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index 8ead950739..f4967f98fa 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2014, 2015, 2017 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2016 Alex Kost <alezost@gmail.com> +;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il> ;;; ;;; This file is part of GNU Guix. ;;; @@ -224,7 +225,7 @@ name of its URI." (define %supported-systems ;; This is the list of system types that are supported. By default, we ;; expect all packages to build successfully here. - '("x86_64-linux" "i686-linux" "armhf-linux" "mips64el-linux")) + '("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux" "mips64el-linux")) (define %hurd-systems ;; The GNU/Hurd systems for which support is being developed. @@ -235,7 +236,7 @@ name of its URI." ;; ;; XXX: MIPS is temporarily unavailable on Hydra: ;; <https://lists.gnu.org/archive/html/guix-devel/2017-03/msg00790.html>. - (delete "mips64el-linux" %supported-systems)) + (fold delete %supported-systems '("aarch64-linux" "mips64el-linux"))) ;; A package. |