;;; 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 ;;; ;;; 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 . (define-module (gnu packages gobby) #:use-module (guix packages) #:use-module (guix down
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2021-06-23 02:15:25 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2021-06-23 02:51:29 +0200
commit192d74719ace67c08da1e1c682521b52ac6b0725 (patch)
treec094b9e2131d2680802aed4e904f69d52f67564c /gnu/packages/agda.scm
parenta437bd9180d1af0f84229d4ae3e9cd0ab93d9fa0 (diff)
downloadguix-192d74719ace67c08da1e1c682521b52ac6b0725.tar.gz
guix-192d74719ace67c08da1e1c682521b52ac6b0725.zip
gnu: cups: Fetch source directly from the Git repository.
* gnu/packages/cups.scm (cups)[source]: Use GIT-FETCH and GIT-FILE-NAME.
Diffstat (limited to 'gnu/packages/agda.scm')
0 files changed, 0 insertions, 0 deletions
(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 `(("glib" ,glib) ("gsasl" ,gsasl) ("gtk+" ,gtk+) ("libxml2" ,libxml2))) (native-inputs `(("pkg-config" ,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+)))