gnu: efibootmgr: Use G-expressions.

* gnu/packages/linux.scm (efibootmgr)[arguments]: Convert to G-expressions.
This commit is contained in:
Marius Bakke 2022-02-19 12:07:55 +01:00
parent af50b52ae3
commit 68679e7c3e
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -6770,16 +6770,17 @@ (define-public efibootmgr
"efidp_format_device_path((unsigned char *)text_path,"))))))
(build-system gnu-build-system)
(arguments
'(#:tests? #f ;no tests
#:make-flags (list (string-append "prefix=" %output)
(string-append "libdir=" %output "/lib")
;; EFIDIR denotes a subdirectory relative to the
;; EFI System Partition where the loader will be
;; installed (known as OS_VENDOR in the code).
;; GRUB overrides this, as such it's only used if
;; nothing else is specified on the command line.
"EFIDIR=gnu")
#:phases (modify-phases %standard-phases (delete 'configure))))
(list
#:tests? #f ;no tests
#:make-flags #~(list (string-append "prefix=" #$output)
(string-append "libdir=" #$output "/lib")
;; EFIDIR denotes a subdirectory relative to the
;; EFI System Partition where the loader will be
;; installed (known as OS_VENDOR in the code).
;; GRUB overrides this, as such it's only used if
;; nothing else is specified on the command line.
"EFIDIR=gnu")
#:phases #~(modify-phases %standard-phases (delete 'configure))))
(native-inputs
(list pkg-config))
(inputs