diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-07-17 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-07-17 02:00:13 +0200 |
commit | 06d2e72262da95fa50f86ea918bf1115c8552a16 (patch) | |
tree | 5d8fe6acdda5cf96bc353aa873d2d1e32fe6fcfa | |
parent | e36fa380c4475289fdb2c30c54e9f1d8b3861977 (diff) | |
download | guix-06d2e72262da95fa50f86ea918bf1115c8552a16.tar.gz guix-06d2e72262da95fa50f86ea918bf1115c8552a16.zip |
gnu: dmidecode: Use G-expressions.
* gnu/packages/admin.scm (dmidecode)[arguments]:
Rewrite as G-expressions.
-rw-r--r-- | gnu/packages/admin.scm | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 81e4659a1a..952b1f15db 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -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 |