me
/
guix
Archived
1
0
Fork 0

gnu: efivar: Use G-expressions.

* gnu/packages/linux.scm (efivar)[arguments]: Convert to G-expressions.
Marius Bakke 2022-02-19 12:06:11 +01:00
parent 5089e9aa06
commit af50b52ae3
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 15 additions and 13 deletions

View File

@ -6719,14 +6719,16 @@ under OpenGL graphics workloads.")
"0jaka7b4lccswjqiv4liclkj6w78gildg7vd6dnw3wf595pfs67h"))))
(build-system gnu-build-system)
(arguments
`(;; Tests require a UEFI system and is not detected in the chroot.
(list
;; Tests require a UEFI system and is not detected in the chroot.
#:tests? #f
#:make-flags (list (string-append "prefix=" %output)
(string-append "libdir=" %output "/lib")
(string-append "CC_FOR_BUILD=" ,(cc-for-target))
(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
#:make-flags
#~(list (string-append "prefix=" #$output)
(string-append "libdir=" #$output "/lib")
(string-append "CC_FOR_BUILD=" #$(cc-for-target))
(string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib"))
#:phases
(modify-phases %standard-phases
#~(modify-phases %standard-phases
(add-after 'unpack 'build-deterministically
(lambda _
(substitute* "src/include/defaults.mk"