diff options
author | Andy Wingo <wingo@igalia.com> | 2016-09-27 14:26:48 +0200 |
---|---|---|
committer | Andy Wingo <wingo@igalia.com> | 2016-09-27 14:46:10 +0200 |
commit | 22a3cff3c81d58c9d7d80c8beebec680ee90d9c3 (patch) | |
tree | 4f5378c941a5f5f607f8ef6bb5a39728142ca5cf /gnu/packages/gobby.scm | |
parent | c8105e811b1f3a1f01d6942bd9ddeb8004ce30f3 (diff) | |
download | guix-22a3cff3c81d58c9d7d80c8beebec680ee90d9c3.tar guix-22a3cff3c81d58c9d7d80c8beebec680ee90d9c3.tar.gz |
gnu: Add obby.
* gnu/packages/gobby.scm (obby): New variable.
Diffstat (limited to 'gnu/packages/gobby.scm')
-rw-r--r-- | gnu/packages/gobby.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/gobby.scm b/gnu/packages/gobby.scm index f1df9b4d15..0502af799e 100644 --- a/gnu/packages/gobby.scm +++ b/gnu/packages/gobby.scm @@ -66,3 +66,32 @@ (description "Library which that 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 + "Library that provides synced document buffers. It supports multiple +documents in one session. Obby is used by the Gobby collaborative editor.") + (license license:gpl2+))) |