[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/04: gnu: profanity: Enable plugins, icons and clipboard.
From: |
guix-commits |
Subject: |
03/04: gnu: profanity: Enable plugins, icons and clipboard. |
Date: |
Sun, 13 Sep 2020 05:54:15 -0400 (EDT) |
dannym pushed a commit to branch master
in repository guix.
commit d0e85b805e93ffca017cd0bb22d5380fbaa59693
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Sun Sep 13 00:27:19 2020 -0400
gnu: profanity: Enable plugins, icons and clipboard.
* gnu/packages/messaging.scm (profanity) [arguments]<#:configure-flags>
[--enable-python-plugins]: New flag.
[--enable-plugins]: New flag.
[--enable-icons-and-clipboard]: New flag.
[--enable-icons]: Remove flag.
[inputs]: Add python-wrapper.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/messaging.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 13ed7b4..ef27e12 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1788,11 +1788,13 @@ are both supported).")
`(#:configure-flags
(list
"--enable-notifications"
+ "--enable-python-plugins"
"--enable-c-plugins"
+ "--enable-plugins"
"--enable-otr"
"--enable-pgp"
"--enable-omemo"
- "--enable-icons")))
+ "--enable-icons-and-clipboard")))
(native-inputs
`(("autoconf" ,autoconf)
("autoconf-archive" ,autoconf-archive)
@@ -1812,6 +1814,7 @@ are both supported).")
("libsignal-protocol-c" ,libsignal-protocol-c)
("ncurses" ,ncurses)
("openssl" ,openssl)
+ ("python" ,python-wrapper)
("readline" ,readline)
("sqlite" ,sqlite)))
(synopsis "Console-based XMPP client")