2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/guix-cuirass.git synced 2023-12-14 06:03:04 +01:00

Add build types list.

This commit is contained in:
Mathieu Othacehe 2021-03-11 17:37:47 +01:00
parent 69778d1bcd
commit bd8af796d8
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -38,6 +38,8 @@
channel->sexp
sexp->channel*
%build-types
specification
specification?
specification-name
@ -135,11 +137,15 @@
;;; Specification record.
;;;
;; The list of possible build types.
(define %build-types
'(all core guix hello packages manifests))
(define-record-type* <specification>
specification make-specification
specification?
(name specification-name) ;symbol
(build specification-build ;symbol
(build specification-build ;symbol for %build-types
(default 'all))
(channels specification-channels ;list of <channel>
(default (list %default-guix-channel)))