guix-devel
[Top][All Lists]
Advanced

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

[PATCH 3/4] gnu: Add obby.


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

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

diff --git a/gnu/packages/gobby.scm b/gnu/packages/gobby.scm
index 7e90453..eac088a 100644
--- a/gnu/packages/gobby.scm
+++ b/gnu/packages/gobby.scm
@@ -67,3 +67,32 @@
      "net6 is a library which eases the development of network-based
 applications as it provides a TCP protocol abstraction for C++.")
     (license license:lgpl2.1)))
+
+(define-public obby
+  (package
+    (name "obby")
+    (version "0.4.8")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://releases.0x539.de/obby/obby-";
+                                  version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0rwvp0kzsb8y6mq73rzb8yk4kvsrz64i2zf4lfqs3kh0x2k7n7bx"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("libsigc++" ,libsigc++)
+       ("gnutls" ,gnutls)
+       ("libnet6" ,libnet6)))
+    (arguments
+     ;; Required by libsigc++.
+     `(#:configure-flags '("CXXFLAGS=-std=c++11")))
+    (home-page "https://gobby.github.io/";)
+    (synopsis "Library for building collaborative editors")
+    (description
+     "libobby is a library which provides synced document buffers. It supports
+multiple documents in one session.")
+    (license license:gpl2+)))
-- 
2.9.3




reply via email to

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