summaryrefslogtreecommitdiff
path: root/guix/packages.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-09-04 13:40:55 +0200
committerLudovic Courtès <ludo@gnu.org>2015-09-04 13:50:38 +0200
commit035b6ff7079576c37af88342c7ff6f904fbc6329 (patch)
treed902ceb7b097f11d093a17d66d22f8458c45cf29 /guix/packages.scm
parent70db9576f467a09ddcc08a7d590dc88f9822e68b (diff)
downloadgnu-guix-035b6ff7079576c37af88342c7ff6f904fbc6329.tar
gnu-guix-035b6ff7079576c37af88342c7ff6f904fbc6329.tar.gz
packages: Define '%hurd-systems'.
* guix/packages.scm (%hurd-systems): New variable.
Diffstat (limited to 'guix/packages.scm')
-rw-r--r--guix/packages.scm5
1 files changed, 5 insertions, 0 deletions
diff --git a/guix/packages.scm b/guix/packages.scm
index d73e6b0abb..68ec236451 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -94,6 +94,7 @@
package-grafts
%supported-systems
+ %hurd-systems
%hydra-supported-systems
supported-package?
@@ -190,6 +191,10 @@ representation."
;; expect all packages to build successfully here.
'("x86_64-linux" "i686-linux" "armhf-linux" "mips64el-linux"))
+(define %hurd-systems
+ ;; The GNU/Hurd systems for which support is being developed.
+ '("i585-gnu" "i686-gnu"))
+
(define %hydra-supported-systems
;; This is the list of system types for which build slaves are available.
%supported-systems)