diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-11-15 13:32:07 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-11-18 23:37:44 +0100 |
commit | 46c296dcc4817f15a4b4ef7e5ef622306b4db62e (patch) | |
tree | 3d4ce8d6ff27295b1dbfd1ae267a50e8f339daaf /gnu/bootloader/extlinux.scm | |
parent | b297934437932de730432629b361fcb422accbb7 (diff) | |
download | patches-46c296dcc4817f15a4b4ef7e5ef622306b4db62e.tar patches-46c296dcc4817f15a4b4ef7e5ef622306b4db62e.tar.gz |
bootloader: De-monadify configuration file generators.
* gnu/bootloader/extlinux.scm: Remove unneeded imports.
(extlinux-configuration-file): Use 'computed-file' instead of
'gexp->derivation'.
* gnu/bootloader/grub.scm (svg->png): Likewise.
(grub-background-image, eye-candy): Adjust accordingly, return
non-monadically.
(grub-configuration-file): Likewise, and use 'computed-file' instead of
'gexp->derivation'.
* gnu/bootloader/u-boot.scm: Remove unneeded imports.
* gnu/system.scm: Add 'lower-object' call.
Diffstat (limited to 'gnu/bootloader/extlinux.scm')
-rw-r--r-- | gnu/bootloader/extlinux.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/bootloader/extlinux.scm b/gnu/bootloader/extlinux.scm index 8b7a95a6fc..b48596c496 100644 --- a/gnu/bootloader/extlinux.scm +++ b/gnu/bootloader/extlinux.scm @@ -19,12 +19,8 @@ (define-module (gnu bootloader extlinux) #:use-module (gnu bootloader) - #:use-module (gnu system) - #:use-module (gnu build bootloader) #:use-module (gnu packages bootloaders) #:use-module (guix gexp) - #:use-module (guix monads) - #:use-module (guix records) #:use-module (guix utils) #:export (extlinux-bootloader extlinux-bootloader-gpt)) @@ -78,7 +74,7 @@ TIMEOUT ~a~%" (format port "~%")) #~()))))) - (gexp->derivation "extlinux.conf" builder)) + (computed-file "extlinux.conf" builder)) |