-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild-iso.sh
executable file
·39 lines (30 loc) · 1.14 KB
/
build-iso.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/sh
# Based on https://github.com/systemcrafters/guix-install
# -----------------------------------------------------------------------------
# Utilities
# -----------------------------------------------------------------------------
die() {
# **
# Prints a message to stderr & exits script with non-successful code "1"
# *
printf '%s\n' "$@" >&2
exit 1
}
# -----------------------------------------------------------------------------
# Main
# -----------------------------------------------------------------------------
# Write out the channels file so it can be included
guix time-machine -C './engstrand/channels.scm' -- \
describe -f channels > './channels.scm'
# Build the image
printf 'Attempting to build the image...\n\n'
image=$(guix time-machine -C './channels.scm' -- system image -t iso9660 './engstrand/installer.scm') \
|| die 'Could not create image.'
release_tag=$(date +"%Y%m%d%H%M")
cp "${image}" "./guix-installer-${release_tag}.iso" ||
die 'An error occurred while copying.'
printf 'Image was succesfully built: %s\n' "${image}"
# cleanup
rm -f ./channels.scm
unset -f die
unset -v image release_tag