gnu: profanity: Enable plugins, icons and clipboard.
authorRaghav Gururajan <raghavgururajan@disroot.org>
Sun, 13 Sep 2020 04:27:19 +0000 (00:27 -0400)
committerDanny Milosavljevic <dannym@scratchpost.org>
Sun, 13 Sep 2020 09:48:09 +0000 (11:48 +0200)
* 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

index 13ed7b4..ef27e12 100644 (file)
@@ -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")