diff options
-rw-r--r-- | guix/packages.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index 4bc4b017f4..61171b8342 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -230,8 +230,11 @@ name of its URI." '("i585-gnu" "i686-gnu")) (define %hydra-supported-systems - ;; This is the list of system types for which build slaves are available. - %supported-systems) + ;; This is the list of system types for which build machines are available. + ;; + ;; XXX: MIPS is temporarily unavailable on Hydra: + ;; <https://lists.gnu.org/archive/html/guix-devel/2017-03/msg00790.html>. + (delete "mips64el-linux" %supported-systems)) ;; A package. |