guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/04: gnu: Add meanwhile.


From: guix-commits
Subject: 01/04: gnu: Add meanwhile.
Date: Mon, 28 Dec 2020 12:50:07 -0500 (EST)

dannym pushed a commit to branch master
in repository guix.

commit 30db113f9b6fd3989ee4744a9c07fe33cfa7e35d
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Sat Nov 28 00:17:22 2020 -0500

    gnu: Add meanwhile.
    
    * gnu/packages/messaging.scm (meanwhile): New variable.
    
    Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
 gnu/packages/messaging.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 1393843..468bb5d 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -126,6 +126,39 @@
   #:use-module (guix packages)
   #:use-module (guix utils))
 
+(define-public meanwhile
+  (package
+    (name "meanwhile")
+    (version "1.1.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri
+        (git-reference
+         (url "https://github.com/obriencj/meanwhile.git";)
+         (commit
+          (string-append "v" version))))
+       (file-name
+        (git-file-name name version))
+       (sha256
+        (base32 "1k1gvmx1ikm0y1mdmm495rzkb00pl170jfaf2dy0n5aiiknkk7q3"))))
+    (build-system glib-or-gtk-build-system)
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("doxygen" ,doxygen)
+       ("libtool" ,libtool)
+       ("pkg-config" ,pkg-config)))
+    (propagated-inputs
+     `(("glib" ,glib)))
+    (synopsis "Library for Lotus Instant Messaging")
+    (description "Meanwhile is a library for connecting to a LIM (Lotus Instant
+Messaging, formerly Lotus Sametime, formerly VPBuddy) community.  It uses a
+protocol based in part off of the IMPP draft(*1), and in part off of traces of
+TCP sessions from existing clients.")
+    (home-page "https://github.com/obriencj/meanwhile";)
+    (license license:lgpl3)))
+
 (define-public poezio
   (package
     (name "poezio")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]