1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-28 03:51:53 +02: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:
Raghav Gururajan
2021-12-17 08:45:18 -05:00
parent 50489e3941
commit 47bc8a514c
+2 -1
View File
@@ -166,6 +166,7 @@ irssi, but graphical.")
(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 @@ irssi, but graphical.")
(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/")