gnu: dmidecode: Use G-expressions.

* gnu/packages/admin.scm (dmidecode)[arguments]:
Rewrite as G-expressions.
This commit is contained in:
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

View File

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