;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016, 2017 Andy Wingo ;;; Copyright © 2017, 2019 Arun Isaac ;;; Copyright © 2021 Efraim Flashner ;;; Copyright © 2021 Tobias Geerinckx-Rice ;;; Copyright © 2021 Felix Gruber ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/pciutils.scm')
0 files changed, 0 insertions, 0 deletions
19ypvzqkgcc")))) (build-system gnu-build-system) (native-inputs (list pkg-config 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 "Collaborative editor that supports multiple documents in one session and a multi-user chat. Gobby allows multiple users to edit the same document together over the internet in real-time. This is the older 0.4 version of Gobby. Use this version only if you need to connect to a server running the old 0.4 protocol.") (license license:gpl2+))) (define-public gobby (package (name "gobby") (version "0.6.0") (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 "1p2wbnchxy2wdzk19p7bxfpbq5zawa0l500na57jp8jgk3qz7czx")))) (build-system glib-or-gtk-build-system) (native-inputs (list pkg-config intltool itstool)) (inputs `(("gnutls" ,gnutls) ("gsasl" ,gsasl) ("gtkmm" ,gtkmm-3) ("gtksourceview" ,gtksourceview-3) ("libinfinity" ,libinfinity) ("libxml++-2" ,libxml++-2))) (arguments ;; Required by libsigc++. `(#:configure-flags '("CXXFLAGS=-std=c++11") #:phases (modify-phases %standard-phases (add-after 'install 'move-executable (lambda* (#:key outputs #:allow-other-keys) (with-directory-excursion (assoc-ref outputs "out") (rename-file "bin/gobby-0.5" "bin/gobby")) #t))))) (home-page "https://gobby.github.io/") (synopsis "Collaborative editor") (description "Collaborative editor that supports multiple documents in one session and 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.7.2") (source (origin (method url-fetch) (uri (string-append "http://releases.0x539.de/libinfinity/libinfinity-" version ".tar.gz")) (sha256 (base32 "17i3g61hxz9pzl3ryd1yr15142r25m06jfzjrpdy7ic1b8vjjw3f")))) (build-system gnu-build-system) (inputs (list glib gsasl gtk+ libxml2)) (native-inputs (list pkg-config)) (arguments `(#:configure-flags (list "--disable-static" "--with-inftextgtk" "--with-infgtk"))) (home-page "https://gobby.github.io/") (synopsis "Infininote protocol implementation") (description "libinfinity is a library to build collaborative text editors. Changes to the text buffers are synced to all other clients over a central server. Even though a central server is involved, the local user sees his changes applied instantly and the merging is done on the individual clients.") (license license:lgpl2.1+)))