unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#39312] gnu: Add chatty.
@ 2020-01-27 18:25 Jonathan Brielmaier
  2020-01-31 16:04 ` [bug#39312] gnu: Add chatty.[v2] Jonathan Brielmaier
                   ` (4 more replies)
  0 siblings, 5 replies; 17+ messages in thread
From: Jonathan Brielmaier @ 2020-01-27 18:25 UTC (permalink / raw)
  To: 39312

[-- Attachment #1: Type: text/plain, Size: 344 bytes --]

Hi,

attached is a patch for Chatty. A GUI program for SMS and XMPP optimized
for mobile interfaces. XMPP works nicely already. SMS not yet: I have
the required package "purple-mm-sms" already in my local git, but
couldn't test it yet, because I lack the hardware. I'll submit it
separately as soon it's ready and tested :)

~Jonathan

[-- Attachment #2: 0001-gnu-Add-chatty.patch --]
[-- Type: text/x-patch, Size: 2862 bytes --]

From d746b3b01acdec8a4ce6a508a063f951dd9e74f6 Mon Sep 17 00:00:00 2001
From: Jonathan Brielmaier <jonathan.brielmaier@web.de>
Date: Mon, 27 Jan 2020 19:10:10 +0100
Subject: [PATCH] gnu: Add chatty.

* gnu/packages/messaging.scm (chatty): New variable.
---
 gnu/packages/messaging.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 839f718134..e66d10b0e9 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -18,6 +18,7 @@
 ;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
 ;;; Copyright © 2019, 2020 Brett Gilio <brettg@gnu.org>
 ;;; Copyright © 2019, 2020 Timotej Lazar <timotej.lazar@araneo.si>
+;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
 ;;;
 ;;; 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,40 @@ 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-database
+       ("evolution-data-server" ,evolution-data-server) ;libebook-contacts
+       ("folks" ,folks)
+       ("gettext" ,gettext-minimal)
+       ("glib:bin" ,glib "bin")
+       ("gtk+:bin" ,gtk+ "bin")
+       ("libgcrypt" ,libgcrypt)
+       ("libgee" ,libgee)
+       ("libhandy" ,libhandy)
+       ("pidgin" ,pidgin)
+       ("purple-mm-sms" ,purple-mm-sms)
+       ("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 ModemManager.")
+   (home-page "https://source.puri.sm/Librem5/chatty")
+   (license license:gpl3+)))
+
 ;;; messaging.scm ends here
--
2.25.0


^ permalink raw reply related	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2020-06-16 21:02 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-27 18:25 [bug#39312] gnu: Add chatty Jonathan Brielmaier
2020-01-31 16:04 ` [bug#39312] gnu: Add chatty.[v2] Jonathan Brielmaier
2020-02-02 19:37   ` Leo Famulari
2020-02-03 10:55 ` [bug#39312] [PATCH] gnu: Add chatty jonathan.brielmaier
2020-02-15 13:17   ` Jakub Kądziołka
2020-03-24 15:48 ` Jakub Kądziołka
2020-03-24 17:40   ` Jonathan Brielmaier
2020-04-13 17:25 ` [bug#39312] [PATCH 0/3] [v2] " Jonathan Brielmaier
2020-04-13 17:25   ` [bug#39312] [PATCH 1/3] gnu: Add feedbackd Jonathan Brielmaier
2020-04-13 17:25   ` [bug#39312] [PATCH 2/3] gnu: Add purple-mm-sms Jonathan Brielmaier
2020-04-13 17:25   ` [bug#39312] [PATCH 3/3] gnu: Add chatty Jonathan Brielmaier
2020-04-22 15:08     ` Jonathan Brielmaier
2020-05-11 16:16 ` [bug#39312] [v3 PATCH 0/3] " Jonathan Brielmaier
2020-05-11 16:16   ` [bug#39312] [PATCH 1/3] gnu: Add feedbackd Jonathan Brielmaier
2020-05-11 16:16   ` [bug#39312] [PATCH 2/3] gnu: Add purple-mm-sms Jonathan Brielmaier
2020-05-11 16:16   ` [bug#39312] [PATCH 3/3] gnu: Add chatty Jonathan Brielmaier
2020-06-16 20:57   ` bug#39312: [v3 PATCH 0/3] " Efraim Flashner

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).