mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: nq: Use G-expressions.
* gnu/packages/admin.scm (nq)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
4051231d20
commit
d24ad39491
1 changed files with 6 additions and 5 deletions
|
@ -4882,11 +4882,12 @@ (define-public nq
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list perl))
|
(list perl))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags (list (string-append "CC=" ,(cc-for-target))
|
(list #:make-flags
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
#~(list (string-append "CC=" #$(cc-for-target))
|
||||||
#:phases
|
(string-append "PREFIX=" #$output))
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(delete 'configure))))
|
#~(modify-phases %standard-phases
|
||||||
|
(delete 'configure))))
|
||||||
(synopsis "Unix command line queue utility")
|
(synopsis "Unix command line queue utility")
|
||||||
(description
|
(description
|
||||||
"@code{nq} can create very lightweight job queue systems which require no
|
"@code{nq} can create very lightweight job queue systems which require no
|
||||||
|
|
Loading…
Reference in a new issue