gnu: irssi: Return #t from all phases.

* gnu/packages/irc.scm (irssi)[arguments]: Substitute INVOKE for
SYSTEM*.
This commit is contained in:
Tobias Geerinckx-Rice 2018-06-24 22:21:54 +02:00
parent e90271604a
commit 19621509dc
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -133,12 +133,11 @@ (define-public irssi
(lambda* (#:key inputs outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(setenv "CONFIG_SHELL" (which "bash"))
(zero?
(system* "./configure"
(string-append "--prefix=" out)
(string-append "--with-proxy")
(string-append "--with-socks")
(string-append "--with-bot")))))))))
(invoke "./configure"
(string-append "--prefix=" out)
(string-append "--with-proxy")
(string-append "--with-socks")
(string-append "--with-bot"))))))))
(inputs
`(("glib" ,glib)
("ncurses" ,ncurses)