From 0207fce7eae5b41c5f4df32ffeddeb3bba3e25cd Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Sun, 13 Sep 2020 00:27:19 -0400 Subject: [PATCH 3/4] gnu: profanity: Enable missing features. * 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. [native-inputs]: Add python-wrapper. The above changes enables support for general-plugins, python-plugins, icons and clipboard. The python-wrapper is required to enable python-plugins. --- gnu/packages/messaging.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 13ed7b489c..232d80a5fc 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1788,18 +1788,21 @@ 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) ("automake" ,automake) ("cmocka" ,cmocka) ("libtool" ,libtool) - ("pkg-config" ,pkg-config))) + ("pkg-config" ,pkg-config) + ("python" ,python-wrapper))) (inputs `(("curl" ,curl) ("expat" ,expat) -- 2.28.0