guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/19: gnu: dmidecode: Use G-expressions.


From: guix-commits
Subject: 05/19: gnu: dmidecode: Use G-expressions.
Date: Wed, 20 Jul 2022 06:42:27 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 06d2e72262da95fa50f86ea918bf1115c8552a16
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 17 02:00:00 2022 +0200

    gnu: dmidecode: Use G-expressions.
    
    * gnu/packages/admin.scm (dmidecode)[arguments]:
    Rewrite as G-expressions.
---
 gnu/packages/admin.scm | 15 +++++++--------
 1 file 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]