diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-08 02:00:02 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-08 02:00:01 +0200 |
commit | d24ad3949127a938cad306f0524c120afe5e2e4f (patch) | |
tree | 778cf5938ea036120b291693a6143d5d2a7163ed /gnu/packages | |
parent | 4051231d208ddd681a741893768efd912ffb0496 (diff) | |
download | guix-d24ad3949127a938cad306f0524c120afe5e2e4f.tar.gz guix-d24ad3949127a938cad306f0524c120afe5e2e4f.zip |
gnu: nq: Use G-expressions.
* gnu/packages/admin.scm (nq)[arguments]:
Rewrite as G-expressions.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/admin.scm | 11 |
1 files 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 |