installer: Move everything to the build side.
[jackhill/guix/guix.git] / gnu / installer / record.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2018 Mathieu Othacehe <m.othacehe@gmail.com>
3 ;;;
4 ;;; This file is part of GNU Guix.
5 ;;;
6 ;;; GNU Guix is free software; you can redistribute it and/or modify it
7 ;;; under the terms of the GNU General Public License as published by
8 ;;; the Free Software Foundation; either version 3 of the License, or (at
9 ;;; your option) any later version.
10 ;;;
11 ;;; GNU Guix is distributed in the hope that it will be useful, but
12 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ;;; GNU General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU General Public License
17 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19 (define-module (gnu installer record)
20 #:use-module (guix records)
21 #:use-module (srfi srfi-1)
22 #:export (<installer>
23 installer
24 make-installer
25 installer?
26 installer-name
27 installer-init
28 installer-exit
29 installer-exit-error
30 installer-keymap-page
31 installer-locale-page
32 installer-menu-page
33 installer-network-page
34 installer-timezone-page
35 installer-hostname-page
36 installer-user-page
37 installer-welcome-page))
38
39 \f
40 ;;;
41 ;;; Installer record.
42 ;;;
43
44 ;; The <installer> record contains pages that will be run to prompt the user
45 ;; for the system configuration. The goal of the installer is to produce a
46 ;; complete <operating-system> record and install it.
47
48 (define-record-type* <installer>
49 installer make-installer
50 installer?
51 ;; symbol
52 (name installer-name)
53 ;; procedure: void -> void
54 (init installer-init)
55 ;; procedure: void -> void
56 (exit installer-exit)
57 ;; procedure (key arguments) -> void
58 (exit-error installer-exit-error)
59 ;; procedure (#:key models layouts) -> (list model layout variant)
60 (keymap-page installer-keymap-page)
61 ;; procedure: (#:key supported-locales iso639-languages iso3166-territories)
62 ;; -> glibc-locale
63 (locale-page installer-locale-page)
64 ;; procedure: (steps) -> step-id
65 (menu-page installer-menu-page)
66 ;; procedure void -> void
67 (network-page installer-network-page)
68 ;; procedure (zonetab) -> posix-timezone
69 (timezone-page installer-timezone-page)
70 ;; procedure void -> void
71 (hostname-page installer-hostname-page)
72 ;; procedure void -> void
73 (user-page installer-user-page)
74 ;; procedure (logo) -> void
75 (welcome-page installer-welcome-page))