From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55514) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iO1Oh-0006EY-Lt for guix-patches@gnu.org; Fri, 25 Oct 2019 11:21:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iO1Og-0005xh-NX for guix-patches@gnu.org; Fri, 25 Oct 2019 11:21:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58668) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iO1Og-0005xU-Jo for guix-patches@gnu.org; Fri, 25 Oct 2019 11:21:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iO1Og-0001hr-D9 for guix-patches@gnu.org; Fri, 25 Oct 2019 11:21:02 -0400 Subject: [bug#37923] [PATCH 1/2] gnu: profanity: Add configure flags and inputs for better defaults. References: <20191025151711.aoqcwzuz7vwcgdbm@rafflesia> In-Reply-To: <20191025151711.aoqcwzuz7vwcgdbm@rafflesia> Resent-Message-ID: From: Tanguy Le Carrour Date: Fri, 25 Oct 2019 17:20:39 +0200 Message-Id: <20191025152040.25196-1-tanguy@bioneland.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37923@debbugs.gnu.org Cc: Tanguy Le Carrour * gnu/packages/messaging.scm (profanity)[arguments]<#configure-flags>: Add --enable-omemo, --enable-notifications and --enable-icon. [native-inputs]: Add libnotify and libsignal-protocol-c. --- gnu/packages/messaging.scm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index f890ad8dd5..ca01a4492e 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1627,6 +1627,11 @@ are both supported).") (base32 "0nxh81j8ky0fzv47pip1jb7rs5rrin3jx0f3h632bvpjiya45r1z")))) (build-system gnu-build-system) + (arguments + `(#:configure-flags + (list "--enable-omemo" + "--enable-icon" + "--enable-notifications"))) (inputs `(("curl" ,curl) ("expat" ,expat) @@ -1642,7 +1647,9 @@ are both supported).") ("autoconf-archive" ,autoconf-archive) ("automake" ,automake) ("cmocka" ,cmocka) + ("libnotify" ,libnotify) ("libtool" ,libtool) + ("libsignal-protocol-c" ,libsignal-protocol-c) ("pkg-config" ,pkg-config))) (synopsis "Console-based XMPP client") (description "Profanity is a console based XMPP client written in C -- 2.23.0