From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 2/2] gnu: Add mcabber. Date: Mon, 16 Jan 2017 20:45:57 +0000 Message-ID: <20170116204557.31204-3-ng0@libertad.pw> References: <20170116204557.31204-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44711) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cTE9v-00069E-GP for guix-devel@gnu.org; Mon, 16 Jan 2017 15:45:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cTE9t-0002iD-BM for guix-devel@gnu.org; Mon, 16 Jan 2017 15:45:43 -0500 Received: from aibo.runbox.com ([91.220.196.211]:33807) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cTE9t-0002hk-36 for guix-devel@gnu.org; Mon, 16 Jan 2017 15:45:41 -0500 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cTE9r-0001EY-SD for guix-devel@gnu.org; Mon, 16 Jan 2017 21:45:39 +0100 In-Reply-To: <20170116204557.31204-1-ng0@libertad.pw> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/messaging.scm (mcabber): New variable. --- gnu/packages/messaging.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index d6b0d4bbc..67b359d01 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -37,6 +37,7 @@ #:use-module (guix build-system cmake) #:use-module (gnu packages) #:use-module (gnu packages aidc) + #:use-module (gnu packages aspell) #:use-module (gnu packages autotools) #:use-module (gnu packages avahi) #:use-module (gnu packages base) @@ -1150,4 +1151,35 @@ and yet extensible to let you do anything the Jabber protocol allows.") (synopsis "Asynchronous XMPP library") (license license:lgpl2.1))) +(define-public mcabber + (package + (name "mcabber") + (version "1.0.4") + (source + (origin + (method url-fetch) + (uri (string-append "https://mcabber.com/files/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "02nfn5r7cjpnacym95l6bvczii232v3x2gi79gfa9syc7w0brdk3")))) + (build-system gnu-build-system) + (inputs + `(("gpgme" ,gpgme) + ("libotr" ,libotr) + ("aspell" ,aspell) + ("libidn" ,libidn) + ("glib" ,glib) + ("ncurses" ,ncurses) + ("loudmouth" ,loudmouth))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "http://about.psyc.eu/libpsyc") + (description + "Loudmouth is a lightweight and easy-to-use C library for programming +with the Jabber protocol. It's designed to be easy to get started with +and yet extensible to let you do anything the Jabber protocol allows.") + (synopsis "Small XMPP console client") + (license license:gpl2))) + ;;; messaging.scm ends here -- 2.11.0