guix-commits
[Top][All Lists]
Advanced

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

03/33: gnu: jitterentropy-rngd: Use G-expressions.


From: guix-commits
Subject: 03/33: gnu: jitterentropy-rngd: Use G-expressions.
Date: Fri, 21 Oct 2022 13:20:51 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 115f92af62842d27e3023dcb113bb3bc1878bbf0
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Oct 16 02:00:02 2022 +0200

    gnu: jitterentropy-rngd: Use G-expressions.
    
    * gnu/packages/linux.scm (jitterentropy-rngd)[arguments]:
    Rewrite as G-expressions.
---
 gnu/packages/linux.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 2db3681e21..bf1c33db93 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -2684,14 +2684,15 @@ Both commands are targeted at system administrators.")
         (base32 "13br8s6gqnfc844ps38ya5nny3pndsmskszv3dsp1cxcgvmscg1c"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f                      ; no test suite
-       #:make-flags
-       (list (string-append "CC=" ,(cc-for-target))
-             (string-append "PREFIX=" (assoc-ref %outputs "out"))
-             "UNITDIR=$(PREFIX)/lib/systemd/system")
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure))))         ; no ./configure script
+     (list
+      #:tests? #f                       ; no test suite
+      #:make-flags
+      #~(list (string-append "CC=" #$(cc-for-target))
+              (string-append "PREFIX=" #$output)
+              "UNITDIR=$(PREFIX)/lib/systemd/system")
+      #:phases
+      #~(modify-phases %standard-phases
+          (delete 'configure))))         ; no ./configure script
     (home-page "https://www.chronox.de/jent.html";)
     (synopsis "CPU jitter random number generator daemon")
     (description



reply via email to

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