mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: gnunet: Use invoke.
* gnu/packages/gnunet.scm (gnurl)[arguments]: Substitute invoke for system*. (guile-gnunet)[arguments]: Likewise. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
0db22b32ce
commit
0741c3a46a
1 changed files with 2 additions and 3 deletions
|
@ -227,8 +227,7 @@ (define-public gnurl
|
||||||
(("/bin/sh") (which "sh")))
|
(("/bin/sh") (which "sh")))
|
||||||
|
|
||||||
;; Make test output more verbose.
|
;; Make test output more verbose.
|
||||||
(zero? (system* "make" "-C" "tests" "test"))
|
(invoke "make" "-C" "tests" "test"))))))
|
||||||
#t)))))
|
|
||||||
(synopsis "Microfork of cURL with support for the HTTP/HTTPS/GnuTLS subset of cURL")
|
(synopsis "Microfork of cURL with support for the HTTP/HTTPS/GnuTLS subset of cURL")
|
||||||
(description
|
(description
|
||||||
"Gnurl is a microfork of cURL, a command line tool for transferring data
|
"Gnurl is a microfork of cURL, a command line tool for transferring data
|
||||||
|
@ -326,7 +325,7 @@ (define-public guile-gnunet ;GSoC 2015!
|
||||||
'(#:phases (modify-phases %standard-phases
|
'(#:phases (modify-phases %standard-phases
|
||||||
(add-after 'unpack 'bootstrap
|
(add-after 'unpack 'bootstrap
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "autoreconf" "-vfi")))))))
|
(invoke "autoreconf" "-vfi"))))))
|
||||||
(native-inputs `(("pkg-config" ,pkg-config)
|
(native-inputs `(("pkg-config" ,pkg-config)
|
||||||
("autoconf" ,(autoconf-wrapper))
|
("autoconf" ,(autoconf-wrapper))
|
||||||
("automake" ,automake)))
|
("automake" ,automake)))
|
||||||
|
|
Loading…
Reference in a new issue