From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42133) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jO2qT-0005pn-Na for guix-patches@gnu.org; Mon, 13 Apr 2020 13:26:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jO2qR-0007Kg-Ju for guix-patches@gnu.org; Mon, 13 Apr 2020 13:26:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49140) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jO2qR-0007Ka-Gd for guix-patches@gnu.org; Mon, 13 Apr 2020 13:26:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jO2qR-0006gc-D2 for guix-patches@gnu.org; Mon, 13 Apr 2020 13:26:03 -0400 Subject: [bug#39312] [PATCH 3/3] gnu: Add chatty. Resent-Message-ID: From: Jonathan Brielmaier Date: Mon, 13 Apr 2020 19:25:08 +0200 Message-Id: <20200413172508.13532-4-jonathan.brielmaier@web.de> In-Reply-To: <20200413172508.13532-1-jonathan.brielmaier@web.de> References: <20200413172508.13532-1-jonathan.brielmaier@web.de> MIME-Version: 1.0 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 * gnu/packages/messaging.scm (chatty): New variable. =2D-- gnu/packages/messaging.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 98b8fb2637..075d69ed81 100644 =2D-- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -2146,4 +2146,42 @@ support for high performance Telegram Bot creation.= ") (home-page "https://source.puri.sm/Librem5/purple-mm-sms") (license license:gpl2+))) +(define-public chatty + (package + (name "chatty") + (version "0.1.9") + (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 + "18cjm24sj3sm9n2888id9dmzqn3fp5yrwvfkxfbjmvhvv1hyckj8")))= ) + (build-system meson-build-system) + (native-inputs + `(("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-da= tabase + ("gettext" ,gettext-minimal) + ("glib:bin" ,glib "bin") + ("gtk+:bin" ,gtk+ "bin") + ("pkg-config" ,pkg-config))) + (inputs + `(("evolution-data-server" ,evolution-data-server) ;libebook-contacts + ("feedbackd" ,feedbackd) + ("folks" ,folks) + ("libgcrypt" ,libgcrypt) + ("libgee" ,libgee) + ("libhandy" ,libhandy) + ("pidgin" ,pidgin) + ("purple-mm-sms" ,purple-mm-sms) + ("sqlite" ,sqlite))) + (propagated-inputs + `(("adwaita-icon-theme" ,adwaita-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.26.0