guix-commits
[Top][All Lists]
Advanced

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

07/07: gnu: nq: Use G-expressions.


From: guix-commits
Subject: 07/07: gnu: nq: Use G-expressions.
Date: Wed, 11 May 2022 08:32:40 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit d24ad3949127a938cad306f0524c120afe5e2e4f
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun May 8 02:00:02 2022 +0200

    gnu: nq: Use G-expressions.
    
    * gnu/packages/admin.scm (nq)[arguments]:
    Rewrite as G-expressions.
---
 gnu/packages/admin.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 52f832bdf0..cd7053f819 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -4882,11 +4882,12 @@ the XMODEM/YMODEM/ZMODEM file transfer protocols.")
     (native-inputs
      (list perl))
     (arguments
-     `(#:make-flags (list (string-append "CC=" ,(cc-for-target))
-                          (string-append "PREFIX=" (assoc-ref %outputs "out")))
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure))))
+     (list #:make-flags
+           #~(list (string-append "CC=" #$(cc-for-target))
+                   (string-append "PREFIX=" #$output))
+           #:phases
+           #~(modify-phases %standard-phases
+               (delete 'configure))))
     (synopsis "Unix command line queue utility")
     (description
      "@code{nq} can create very lightweight job queue systems which require no



reply via email to

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