From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54300) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1didfK-00058N-7G for guix-patches@gnu.org; Fri, 18 Aug 2017 05:34:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1didfG-0006rC-1j for guix-patches@gnu.org; Fri, 18 Aug 2017 05:34:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34861) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1didfF-0006r5-UE for guix-patches@gnu.org; Fri, 18 Aug 2017 05:34:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1didfF-0004uY-O0 for guix-patches@gnu.org; Fri, 18 Aug 2017 05:34:01 -0400 Subject: [bug#28135] [PATCH 1/2] gnu: Add libinfinity. References: <410b0233.ADkAACstJo0AAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABZlrLk@mailjet.com> In-Reply-To: <410b0233.ADkAACstJo0AAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABZlrLk@mailjet.com> Resent-Message-ID: Message-Id: MIME-Version: 1.0 From: Arun Isaac Date: Fri, 18 Aug 2017 15:01:56 +0530 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 28135@debbugs.gnu.org * gnu/packages/gobby.scm (libinfinity): New variable. --- gnu/packages/gobby.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/gobby.scm b/gnu/packages/gobby.scm index 961028d00..e85f86061 100644 --- a/gnu/packages/gobby.scm +++ b/gnu/packages/gobby.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Andy Wingo +;;; Copyright © 2017 Arun Isaac ;;; ;;; This file is part of GNU Guix. ;;; @@ -25,6 +26,7 @@ #:use-module (gnu packages) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) + #:use-module (gnu packages gsasl) #:use-module (gnu packages gtk) #:use-module (gnu packages pkg-config) #:use-module (gnu packages tls) @@ -129,3 +131,34 @@ documents in one session. Obby is used by the Gobby collaborative editor.") a multi-user chat. Gobby allows multiple users to edit the same document together over the internet in real-time.") (license license:gpl2+))) + +(define-public libinfinity + (package + (name "libinfinity") + (version "0.6.8") + (source + (origin + (method url-fetch) + (uri (string-append "http://releases.0x539.de/libinfinity/libinfinity-" + version ".tar.gz")) + (sha256 + (base32 + "0nylsb6qz9pjw3agjp27c4za205i6zg6i5g1vgs5vbdnbh77wkhc")))) + (build-system gnu-build-system) + (inputs + `(("glib" ,glib) + ("gsasl" ,gsasl) + ("gtk+" ,gtk+-2) + ("libxml2" ,libxml2))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (arguments + `(#:configure-flags (list "--with-inftextgtk" + "--with-infgtk"))) + (home-page "https://gobby.github.io/") + (synopsis "Infininote protocol implementation") + (description "Gobby is a collaborative editor that allows multiple users +to edit the same document together over the internet in real-time. The +libinfinity shared library contains the implementation of the protocol that is +used to synchronize document changes between users.") + (license license:isc))) -- 2.13.4