1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: parallel: Don't end phase with #<undefined>.

* gnu/packages/parallel.scm (parallel)[arguments]: Use INVOKE.
This commit is contained in:
Tobias Geerinckx-Rice
2018-01-22 18:24:45 +01:00
parent 1a35f274af
commit 28b0b21e3f

View File

@@ -76,10 +76,10 @@
#t))
(add-after 'install 'post-install-test
(lambda* (#:key outputs #:allow-other-keys)
(zero? (system* (string-append
(assoc-ref outputs "out") "/bin/parallel")
"echo"
":::" "1" "2" "3")))))))
(invoke (string-append
(assoc-ref outputs "out") "/bin/parallel")
"echo"
":::" "1" "2" "3"))))))
(inputs
`(("perl" ,perl)
("procps" ,procps)))