gnu: irssi: Support proxy, socks, bot.

* gnu/packages/irc.scm (irssi)[arguments]: Add configure flags to
support proxy, socks and bot.
This commit is contained in:
Efraim Flashner 2016-03-03 18:48:52 +02:00
parent fd41741bdc
commit 7b3f2682de

View file

@ -113,7 +113,10 @@ (define-public irssi
(zero?
(system* "./configure"
(string-append "--prefix=" out)
(string-append "--with-ncurses=" ncurses)))))))))
(string-append "--with-ncurses=" ncurses)
(string-append "--with-proxy")
(string-append "--with-socks")
(string-append "--with-bot")))))))))
(inputs
`(("glib" ,glib)
("ncurses" ,ncurses)