[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
- branch master updated (dc00098535 -> d24ad39491), guix-commits, 2022/05/11
- 02/07: gnu: libscrypt: Use G-expressions., guix-commits, 2022/05/11
- 07/07: gnu: nq: Use G-expressions.,
guix-commits <=
- 01/07: gnu: libscrypt: Update to 1.22., guix-commits, 2022/05/11
- 03/07: gnu: htop: Update to 3.2.0., guix-commits, 2022/05/11
- 05/07: gnu: netcat-openbsd: Update to 1.218-5., guix-commits, 2022/05/11
- 06/07: gnu: nq: Update to 0.5., guix-commits, 2022/05/11
- 04/07: gnu: inxi-minimal: Update to 3.3.15-1., guix-commits, 2022/05/11