mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: irssi: Enable true-color and unicode support.
* gnu/packages/irc.scm (irssi)[inputs]: Add utf8proc. [configure-flags](enable-true-color): New flag.
This commit is contained in:
parent
50489e3941
commit
47bc8a514c
1 changed files with 2 additions and 1 deletions
|
@ -166,6 +166,7 @@ (define-public irssi
|
|||
(setenv "CONFIG_SHELL" (which "bash"))
|
||||
(invoke "./configure"
|
||||
(string-append "--prefix=" out)
|
||||
(string-append "--enable-true-color")
|
||||
(string-append "--with-proxy")
|
||||
(string-append "--with-socks")
|
||||
(string-append "--with-bot")))))
|
||||
|
@ -173,7 +174,7 @@ (define-public irssi
|
|||
(lambda _
|
||||
(setenv "HOME" (getcwd)))))))
|
||||
(inputs
|
||||
(list glib ncurses openssl perl))
|
||||
(list glib ncurses openssl perl utf8proc))
|
||||
(native-inputs
|
||||
(list pkg-config))
|
||||
(home-page "https://irssi.org/")
|
||||
|
|
Loading…
Reference in a new issue