guix-devel
[Top][All Lists]
Advanced

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

[PATCH 4/4] gnu: Add obby.


From: Andy Wingo
Subject: [PATCH 4/4] gnu: Add obby.
Date: Tue, 27 Sep 2016 14:31:24 +0200

* gnu/packages/gobby.scm (gobby): New variable.
---
 gnu/packages/gobby.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/gobby.scm b/gnu/packages/gobby.scm
index eac088a..c14e40e 100644
--- a/gnu/packages/gobby.scm
+++ b/gnu/packages/gobby.scm
@@ -96,3 +96,37 @@ applications as it provides a TCP protocol abstraction for 
C++.")
      "libobby is a library which provides synced document buffers. It supports
 multiple documents in one session.")
     (license license:gpl2+)))
+
+(define-public gobby
+  (package
+    (name "gobby")
+    (version "0.4.13")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://releases.0x539.de/gobby/gobby-";
+                                  version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0w8q01lf6bcdz537b29m7rwlbc7k87b12vnpm1h6219ypvzqkgcc"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("intltool" ,intltool)))
+    (inputs
+     `(("libxml++-2" ,libxml++-2)
+       ("gnutls" ,gnutls)
+       ("gtkmm-2" ,gtkmm-2)
+       ("gtksourceview-2" ,gtksourceview-2)
+       ("libnet6" ,libnet6)
+       ("obby" ,obby)))
+    (arguments
+     ;; Required by libsigc++.
+     `(#:configure-flags '("CXXFLAGS=-std=c++11")))
+    (home-page "https://gobby.github.io/";)
+    (synopsis "Collaborative editor")
+    (description
+     "Gobby is a collaborative editor supporting multiple documents in one
+session and a multi-user chat.  It allows multiple users to edit the same
+document together over the internet in real-time.")
+    (license license:gpl2+)))
-- 
2.9.3




reply via email to

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