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
1 changed files with 4 additions and 1 deletions

View File

@ -113,7 +113,10 @@ irssi, but graphical.")
(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)