mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
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:
parent
fd41741bdc
commit
7b3f2682de
1 changed files with 4 additions and 1 deletions
|
@ -113,7 +113,10 @@ (define-public irssi
|
||||||
(zero?
|
(zero?
|
||||||
(system* "./configure"
|
(system* "./configure"
|
||||||
(string-append "--prefix=" out)
|
(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
|
(inputs
|
||||||
`(("glib" ,glib)
|
`(("glib" ,glib)
|
||||||
("ncurses" ,ncurses)
|
("ncurses" ,ncurses)
|
||||||
|
|
Loading…
Reference in a new issue