gnu: Add gtranslator.
[jackhill/guix/guix.git] / gnu / image.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2020 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 image)
20 #:use-module (guix records)
21 #:export (partition
22 partition?
23 partition-device
24 partition-size
25 partition-offset
26 partition-file-system
27 partition-file-system-options
28 partition-label
29 partition-uuid
30 partition-flags
31 partition-initializer
32
33 image
34 image-name
35 image-format
36 image-target
37 image-size
38 image-operating-system
39 image-partitions
40 image-compression?
41 image-volatile-root?
42 image-substitutable?))
43
44 \f
45 ;;;
46 ;;; Partition record.
47 ;;;
48
49 (define-record-type* <partition> partition make-partition
50 partition?
51 (device partition-device (default #f))
52 (size partition-size)
53 (offset partition-offset (default 0))
54 (file-system partition-file-system (default "ext4"))
55 (file-system-options partition-file-system-options
56 (default '()))
57 (label partition-label (default #f))
58 (uuid partition-uuid (default #f))
59 (flags partition-flags (default '()))
60 (initializer partition-initializer (default #f)))
61
62 \f
63 ;;;
64 ;;; Image record.
65 ;;;
66
67 (define-record-type* <image>
68 image make-image
69 image?
70 (name image-name ;symbol
71 (default #f))
72 (format image-format) ;symbol
73 (target image-target
74 (default #f))
75 (size image-size ;size in bytes as integer
76 (default 'guess))
77 (operating-system image-operating-system ;<operating-system>
78 (default #f))
79 (partitions image-partitions ;list of <partition>
80 (default '()))
81 (compression? image-compression? ;boolean
82 (default #t))
83 (volatile-root? image-volatile-root? ;boolean
84 (default #t))
85 (substitutable? image-substitutable? ;boolean
86 (default #t)))