me
/
guix
Archived
1
0
Fork 0

gnu: dmidecode: Use G-expressions.

* gnu/packages/admin.scm (dmidecode)[arguments]:
Rewrite as G-expressions.
master
Tobias Geerinckx-Rice 2022-07-17 02:00:00 +02:00
parent e36fa380c4
commit 06d2e72262
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 7 additions and 8 deletions

View File

@ -2288,14 +2288,13 @@ network, which causes enabled computers to power on.")
(base32 "04i2ahvqinkrnzfsbswplv9wff36xf9b3snvriwrjz26v18sijs3"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; no 'check' target
#:make-flags
(list (string-append "CC=" ,(cc-for-target))
(string-append "prefix="
(assoc-ref %outputs "out")))
#:phases
(modify-phases %standard-phases
(delete 'configure)))) ; no configure script
(list #:tests? #f ; no 'check' target
#:make-flags
#~(list (string-append "CC=" #$(cc-for-target))
(string-append "prefix=" #$output))
#:phases
#~(modify-phases %standard-phases
(delete 'configure)))) ; no configure script
(home-page "https://www.nongnu.org/dmidecode/")
(synopsis "Read hardware information from the BIOS")
(description