diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-03-29 22:50:42 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-03-29 22:50:42 +0200 |
commit | cdb3f734cfb93a5689d9fec3558811fe652749f4 (patch) | |
tree | 9fae9a3751bb1a6a9f8fa3a3a62b2bf7668cd69b | |
parent | 2fa077f31658d9b237368968dc70bc41567788cc (diff) | |
download | patches-cdb3f734cfb93a5689d9fec3558811fe652749f4.tar patches-cdb3f734cfb93a5689d9fec3558811fe652749f4.tar.gz |
packages: Remove "mips64el-linux" from '%hydra-supported-systems'.
* guix/packages.scm (%hydra-supported-systems): Remove "mips64el-linux".
-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. |