unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Jonathan Brielmaier <jonathan.brielmaier@web.de>
To: 39312@debbugs.gnu.org
Cc: Jonathan Brielmaier <jonathan.brielmaier@web.de>
Subject: [bug#39312] [PATCH 2/3] gnu: Add purple-mm-sms.
Date: Mon, 11 May 2020 18:16:52 +0200	[thread overview]
Message-ID: <20200511161653.22046-3-jonathan.brielmaier@web.de> (raw)
In-Reply-To: <20200511161653.22046-1-jonathan.brielmaier@web.de>

* gnu/packages/messaging.scm (purple-mm-sms): 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 46242f20e9..25bd239d8f 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -21,6 +21,7 @@
 ;;; Copyright © 2020 Nicolò Balzarotti <nicolo@nixo.xyz>
 ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
 ;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
+;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -59,6 +60,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)
@@ -2160,4 +2162,40 @@ support for high performance Telegram Bot creation.")
       (home-page "https://core.telegram.org/tdlib")
       (license license:boost1.0))))

+(define-public purple-mm-sms
+  (package
+    (name "purple-mm-sms")
+    (version "0.1.4")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://source.puri.sm/Librem5/purple-mm-sms.git")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1daf7zl8bhhm1szkgxflpqql69f2w9i9nlgf1n4p1nynxifz1bim"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:make-flags
+       (let ((out (assoc-ref %outputs "out")))
+         ;; Fix hardcoded paths
+         (list (string-append "DESTDIR=" out)
+               (string-append "PLUGIN_DIR_PURPLE=" out "/lib/purple-2")
+               (string-append "DATA_ROOT_DIR_PURPLE=" out "/usr/share")))
+       #:phases
+       (modify-phases %standard-phases
+          (delete 'configure)
+          (delete 'check)))) ; no tests
+    (native-inputs
+     `(("glib:bin" ,glib "bin")
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("modem-manager" ,modem-manager)
+       ("pidgin" ,pidgin)))
+    (synopsis "Libpurple plugin for SMS via ModemManager")
+    (description "Plugin for libpurple to allow sending SMS using ModemManager.")
+    (home-page "https://source.puri.sm/Librem5/purple-mm-sms")
+    (license license:gpl2+)))
+
 ;;; messaging.scm ends here
--
2.26.2





  parent reply	other threads:[~2020-05-11 16:18 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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   ` Jonathan Brielmaier [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200511161653.22046-3-jonathan.brielmaier@web.de \
    --to=jonathan.brielmaier@web.de \
    --cc=39312@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).