From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52326) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyZOd-0006Tn-SW for guix-patches@gnu.org; Mon, 03 Feb 2020 05:56:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyZOc-0004bz-Ij for guix-patches@gnu.org; Mon, 03 Feb 2020 05:56:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:34915) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyZOc-0004b3-BT for guix-patches@gnu.org; Mon, 03 Feb 2020 05:56:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyZOc-0007fh-97 for guix-patches@gnu.org; Mon, 03 Feb 2020 05:56:02 -0500 Subject: [bug#39312] [PATCH] gnu: Add chatty. References: <77f67f99-44e6-6464-cf96-62eec29493d6@web.de> In-Reply-To: <77f67f99-44e6-6464-cf96-62eec29493d6@web.de> Resent-Message-ID: From: jonathan.brielmaier@web.de Date: Mon, 3 Feb 2020 11:55:06 +0100 Message-Id: <20200203105506.17445-1-jonathan.brielmaier@web.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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: 39312@debbugs.gnu.org Cc: Jonathan Brielmaier From: Jonathan Brielmaier * gnu/packages/messaging.scm (chatty): New variable. =2D-- gnu/packages/messaging.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 839f718134..0a45711ee6 100644 =2D-- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -18,6 +18,7 @@ ;;; Copyright =C2=A9 2019 Tanguy Le Carrour ;;; Copyright =C2=A9 2019, 2020 Brett Gilio ;;; Copyright =C2=A9 2019, 2020 Timotej Lazar +;;; Copyright =C2=A9 2020 Jonathan Brielmaier ;;; ;;; This file is part of GNU Guix. ;;; @@ -55,6 +56,7 @@ #:use-module (gnu packages documentation) #:use-module (gnu packages enchant) #:use-module (gnu packages fontutils) + #:use-module (gnu packages freedesktop) #:use-module (gnu packages gettext) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) @@ -1995,4 +1997,39 @@ support for high performance Telegram Bot creation.= ") (home-page "https://core.telegram.org/tdlib") (license license:boost1.0)))) +(define-public chatty + (package + (name "chatty") + (version "0.1.7") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://source.puri.sm/Librem5/chatty.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1prqd2dnib3j12pjiplzr2rim9q617vmvzv76lgmz0n3bmp7v7ma")))= ) + (build-system meson-build-system) + (native-inputs + `(("desktop-file-utils" ,desktop-file-utils) ;for update-desktop-dat= abase + ("evolution-data-server" ,evolution-data-server) ;libebook-contact= s + ("folks" ,folks) + ("gettext" ,gettext-minimal) + ("glib:bin" ,glib "bin") + ("gtk+:bin" ,gtk+ "bin") + ("libgcrypt" ,libgcrypt) + ("libgee" ,libgee) + ("libhandy" ,libhandy) + ("pidgin" ,pidgin) + ("pkg-config" ,pkg-config) + ("sqlite" ,sqlite))) + (propagated-inputs + `(("hicolor-icon-theme" ,hicolor-icon-theme))) + (synopsis "Mobile client for XMPP and SMS messaging") + (description "Chatty is a chat program for XMPP and SMS. It works on = mobile +as well as on desktop platforms. It's based on libpurple and ModemManage= r.") + (home-page "https://source.puri.sm/Librem5/chatty") + (license license:gpl3+))) + ;;; messaging.scm ends here =2D- 2.25.0