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:
Raghav Gururajan 2021-12-17 08:45:18 -05:00
parent 50489e3941
commit 47bc8a514c
No known key found for this signature in database
GPG key ID: 5F5816647F8BE551

View file

@ -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/")