2014-04-24 22:03:36 +00:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2018-03-11 20:46:30 +00:00
|
|
|
;;; Copyright © 2014, 2018 Ludovic Courtès <ludo@gnu.org>
|
2016-01-20 12:09:53 +00:00
|
|
|
;;; Copyright © 2014, 2016 Andreas Enge <andreas@enge.fr>
|
2016-03-16 15:18:21 +00:00
|
|
|
;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
|
2016-07-04 19:32:31 +00:00
|
|
|
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
|
2017-01-03 11:58:28 +00:00
|
|
|
;;; Copyright © 2016 Thomas Danckaert <post@thomasdanckaert.be>
|
2017-08-28 02:27:56 +00:00
|
|
|
;;; Copyright © 2017 Kei Kebreau <kkebreau@posteo.net>
|
2020-07-26 19:19:12 +00:00
|
|
|
;;; Copyright © 2017, 2020 Efraim Flashner <efraim@flashner.co.il>
|
2018-02-06 14:53:15 +00:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2019-08-02 09:35:37 +00:00
|
|
|
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
2020-03-03 11:52:46 +00:00
|
|
|
;;; Copyright © 2020 Ricardo Wurmus <rekado@elephly.net>
|
2021-02-04 22:54:26 +00:00
|
|
|
;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
|
2022-06-27 19:10:01 +00:00
|
|
|
;;; Copyright © 2021, 2022 Marius Bakke <marius@gnu.org>
|
2022-04-14 04:35:58 +00:00
|
|
|
;;; Copyright © 2022 Maxim Cournoyer <maxim.counoyer@gmail.com>
|
2023-06-13 05:18:26 +00:00
|
|
|
;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
2014-04-24 22:03:36 +00:00
|
|
|
;;;
|
|
|
|
;;; 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-03-16 15:12:47 +00:00
|
|
|
(define-module (gnu packages documentation)
|
|
|
|
#:use-module (guix licenses)
|
2014-04-24 22:03:36 +00:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2022-04-14 04:35:58 +00:00
|
|
|
#:use-module (guix gexp)
|
2020-03-03 11:52:46 +00:00
|
|
|
#:use-module (guix git-download)
|
2016-03-16 15:12:47 +00:00
|
|
|
#:use-module (guix build-system gnu)
|
2016-01-20 12:09:53 +00:00
|
|
|
#:use-module (guix build-system cmake)
|
2022-12-06 08:43:41 +00:00
|
|
|
#:use-module (guix build-system perl)
|
2022-04-14 04:35:58 +00:00
|
|
|
#:use-module (guix build-system python)
|
2020-07-30 05:39:45 +00:00
|
|
|
#:use-module (guix build-system qt)
|
2021-05-18 17:35:14 +00:00
|
|
|
#:use-module (guix deprecation)
|
2023-06-13 05:18:26 +00:00
|
|
|
#:use-module (guix utils)
|
2014-04-24 22:03:36 +00:00
|
|
|
#:use-module (gnu packages)
|
2018-02-06 14:53:15 +00:00
|
|
|
#:use-module (gnu packages autotools)
|
2020-07-30 05:39:45 +00:00
|
|
|
#:use-module (gnu packages backup)
|
2019-08-02 09:35:37 +00:00
|
|
|
#:use-module (gnu packages base)
|
2017-01-03 11:58:28 +00:00
|
|
|
#:use-module (gnu packages bash)
|
2022-04-14 04:35:58 +00:00
|
|
|
#:use-module (gnu packages check)
|
2016-03-16 15:12:47 +00:00
|
|
|
#:use-module (gnu packages python)
|
2022-04-14 04:35:58 +00:00
|
|
|
#:use-module (gnu packages python-xyz)
|
2014-04-24 22:03:36 +00:00
|
|
|
#:use-module (gnu packages bison)
|
2020-07-30 05:39:45 +00:00
|
|
|
#:use-module (gnu packages kde-frameworks)
|
2016-07-04 19:32:31 +00:00
|
|
|
#:use-module (gnu packages docbook)
|
2014-04-24 22:03:36 +00:00
|
|
|
#:use-module (gnu packages flex)
|
2014-04-24 22:31:41 +00:00
|
|
|
#:use-module (gnu packages graphviz)
|
2016-03-16 15:18:21 +00:00
|
|
|
#:use-module (gnu packages gettext)
|
2016-07-04 19:32:31 +00:00
|
|
|
#:use-module (gnu packages glib)
|
2014-04-24 22:03:36 +00:00
|
|
|
#:use-module (gnu packages perl)
|
2020-07-30 05:39:45 +00:00
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages qt)
|
|
|
|
#:use-module (gnu packages sqlite)
|
2022-04-14 04:35:58 +00:00
|
|
|
#:use-module (gnu packages sphinx)
|
2020-07-30 05:39:45 +00:00
|
|
|
#:use-module (gnu packages xml)
|
|
|
|
#:use-module (gnu packages xorg))
|
2016-03-16 15:12:47 +00:00
|
|
|
|
2020-08-08 02:44:20 +00:00
|
|
|
(define-public latex2html
|
|
|
|
(package
|
|
|
|
(name "latex2html")
|
2022-12-26 20:55:16 +00:00
|
|
|
(version "2022.2")
|
2020-08-08 02:44:20 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri
|
|
|
|
(git-reference
|
gnu: Don't append '.git' to GitHub uris.
* gnu/packages/admin.scm (nmrpflash)[source]: Remove '.git' from URI.
* gnu/packages/aidc.scm (zxing-cpp),
* gnu/packages/assembly.scm (mbuild),
* gnu/packages/audio.scm (opensles, wildmidi, tinyalsa),
* gnu/packages/browser-extensions.scm (ublock-origin-chromium),
* gnu/packages/check.scm (mutest),
* gnu/packages/compression.scm (unshield),
* gnu/packages/coq.scm (subset),
* gnu/packages/dictionaries.scm (translate-shell),
* gnu/packages/disk.scm (memkind),
* gnu/packages/documentation.scm (latex2html),
* gnu/packages/emacs-xyz.scm (emacs-chronometrist,
emacs-flycheck-ledger, emacs-counsel-notmuch, emacs-spaceline,
emacs-org-generate),
* gnu/packages/embedded.scm (ebusd, ebusd-configuration),
* gnu/packages/enchant.scm (nuspell),
* gnu/packages/fontutils.scm (woff2),
* gnu/packages/geo.scm (memphis),
* gnu/packages/gimp.scm (mrg),
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator),
* gnu/packages/gnome.scm (parlatype),
* gnu/packages/golang.scm (go-github-com-tv42-httpunix,
go-github-com-ayufan-golang-kardianos-service),
* gnu/packages/graphics.scm (eglexternalplatform, egl-wayland, mmm,
directfb, flux),
* gnu/packages/gstreamer.scm (openni2, ccextractor, libvisual,
graphene),
* gnu/packages/guile-xyz.scm (guile-srfi-180, guile-torrent),
* gnu/packages/image.scm (openjpeg-data),
* gnu/packages/java.scm (javacc),
* gnu/packages/language.scm (liblouis, liblouisutdml),
* gnu/packages/linux.scm (pamela, ttyebus),
* gnu/packages/lxqt.scm (lxqt-connman-applet),
* gnu/packages/mail.scm (libetpan),
* gnu/packages/man.scm (ronn),
* gnu/packages/music.scm (tascam-gtk, artyfx),
* gnu/packages/networking.scm (srt, lksctp-tools, nng, nanomsg),
* gnu/packages/python-crypto.scm (pure-python-otr),
* gnu/packages/qt.scm (qtspell),
* gnu/packages/raspberry-pi.scm (raspi-gpio, raspi-open-firmware),
* gnu/packages/rdp.scm (freerdp),
* gnu/packages/ruby.scm (ruby-prawn-templates, ruby-treetop, ruby-gimme,
ruby-standard, ruby-rubocop-ast, ruby-rexml, ruby-range-compressor,
ruby-regexp-property-values, ruby-regexp-parser, ruby-rubocop,
ruby-pdf-reader, ruby-pdf-inspector, ruby-prawn),
* gnu/packages/syncthing.scm (syncthing-gtk),
* gnu/packages/video.scm (svt-hevc, mediasdk, libvideogfx, libde265,
tslib),
* gnu/packages/xml.scm (libxmlb, libxmlplusplus)[source]: Same.
2020-11-19 18:18:54 +00:00
|
|
|
(url "https://github.com/latex2html/latex2html")
|
2020-08-08 02:44:20 +00:00
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
2022-12-26 20:55:16 +00:00
|
|
|
(base32 "1z71anjzxy5jsdlaqba4w9spncc6iycldarnr2z1dq8xmk6yhpjn"))))
|
2020-08-08 02:44:20 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2022-12-26 20:55:16 +00:00
|
|
|
(list #:phases
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'patch-configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(substitute* "configure"
|
|
|
|
(("/usr/local")
|
|
|
|
#$output)
|
|
|
|
(("\\$\\{CONFIG_SHELL-/bin/sh\\}")
|
|
|
|
(which "bash")))))
|
|
|
|
(replace 'configure
|
|
|
|
(lambda _
|
|
|
|
(invoke "./configure")))
|
|
|
|
(add-after 'configure 'patch-cfgcache
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(substitute* "cfgcache.pm"
|
|
|
|
(("/usr/local")
|
|
|
|
#$output)))))))
|
2020-08-08 02:44:20 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list perl))
|
2020-08-08 02:44:20 +00:00
|
|
|
(synopsis "LaTeX documents to HTML")
|
|
|
|
(description "LaTeX2HTML is a utility that converts LaTeX documents to web
|
|
|
|
pages in HTML.")
|
|
|
|
(home-page "https://www.latex2html.org/")
|
|
|
|
(license gpl2+)))
|
|
|
|
|
2016-03-16 15:12:47 +00:00
|
|
|
(define-public asciidoc
|
|
|
|
(package
|
|
|
|
(name "asciidoc")
|
2021-05-18 17:35:14 +00:00
|
|
|
(version "9.1.0")
|
2016-03-16 15:12:47 +00:00
|
|
|
(source (origin
|
2020-07-26 19:19:12 +00:00
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
2021-05-18 17:35:14 +00:00
|
|
|
(url "https://github.com/asciidoc/asciidoc-py")
|
|
|
|
(commit version)))
|
2020-07-26 19:19:12 +00:00
|
|
|
(file-name (git-file-name name version))
|
2016-03-16 15:12:47 +00:00
|
|
|
(sha256
|
|
|
|
(base32
|
2021-05-18 17:35:14 +00:00
|
|
|
"1clf1axkns23wfmh48xfspzsnw04pjh4mq1pshpzvj0cwxhz0yaq"))))
|
2016-03-16 15:12:47 +00:00
|
|
|
(build-system gnu-build-system)
|
2016-08-19 19:08:43 +00:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; no 'check' target
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2018-03-25 04:23:44 +00:00
|
|
|
(replace 'bootstrap
|
|
|
|
(lambda _
|
|
|
|
(invoke "autoconf")))
|
2017-03-12 21:46:28 +00:00
|
|
|
;; Some XML-related binaries are required for asciidoc's proper usage.
|
|
|
|
;; Without these, asciidoc fails when parsing XML documents, either
|
|
|
|
;; reporting a missing "xmllint" binary or, when passed the
|
|
|
|
;; "--no-xmllint" option, a missing "xsltproc" binary.
|
|
|
|
;; The following phase enables asciidoc to find some of them.
|
|
|
|
(add-before 'configure 'set-xml-binary-paths
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(let* ((libxml2 (assoc-ref inputs "libxml2"))
|
|
|
|
(xmllint (string-append libxml2 "/bin/xmllint"))
|
|
|
|
(libxslt (assoc-ref inputs "libxslt"))
|
|
|
|
(xsltproc (string-append libxslt "/bin/xsltproc")))
|
|
|
|
(substitute* "a2x.py"
|
|
|
|
(("XMLLINT = 'xmllint'")
|
|
|
|
(string-append "XMLLINT = '" xmllint "'"))
|
|
|
|
(("XSLTPROC = 'xsltproc'")
|
2023-04-21 03:00:28 +00:00
|
|
|
(string-append "XSLTPROC = '" xsltproc "'"))))))
|
2016-08-19 19:08:43 +00:00
|
|
|
;; Make asciidoc use the local docbook-xsl package instead of fetching
|
|
|
|
;; it from the internet at run-time.
|
|
|
|
(add-before 'install 'make-local-docbook-xsl
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(substitute* (find-files "docbook-xsl" ".*\\.xsl$")
|
|
|
|
(("xsl:import href=\"http://docbook.sourceforge.net/\
|
|
|
|
release/xsl/current")
|
|
|
|
(string-append
|
|
|
|
"xsl:import href=\""
|
|
|
|
(string-append (assoc-ref inputs "docbook-xsl")
|
|
|
|
"/xml/xsl/docbook-xsl-"
|
2023-04-21 03:00:28 +00:00
|
|
|
,(package-version docbook-xsl)))))))
|
2017-03-16 05:37:42 +00:00
|
|
|
;; Do the same for docbook-xml.
|
|
|
|
(add-before 'install 'make-local-docbook-xml
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(substitute* "docbook45.conf"
|
|
|
|
(("http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd")
|
|
|
|
(string-append (assoc-ref inputs "docbook-xml")
|
2023-04-21 03:00:28 +00:00
|
|
|
"/xml/dtd/docbook/docbookx.dtd"))))))))
|
|
|
|
(native-inputs (list autoconf))
|
|
|
|
(inputs (list python docbook-xml-4.5 docbook-xsl libxml2 libxslt))
|
2020-06-10 15:19:02 +00:00
|
|
|
(home-page "https://asciidoc.org/")
|
2016-03-16 15:12:47 +00:00
|
|
|
(synopsis "Text-based document generation system")
|
|
|
|
(description
|
|
|
|
"AsciiDoc is a text document format for writing notes, documentation,
|
|
|
|
articles, books, ebooks, slideshows, web pages, man pages and blogs.
|
|
|
|
AsciiDoc files can be translated to many formats including HTML, PDF,
|
|
|
|
EPUB, man page.
|
|
|
|
|
|
|
|
AsciiDoc is highly configurable: both the AsciiDoc source file syntax and
|
|
|
|
the backend output markups (which can be almost any type of SGML/XML
|
|
|
|
markup) can be customized and extended by the user.")
|
|
|
|
(license gpl2+)))
|
2014-04-24 22:03:36 +00:00
|
|
|
|
2021-05-18 17:35:14 +00:00
|
|
|
(define-deprecated asciidoc-py3 asciidoc)
|
2020-03-03 11:52:46 +00:00
|
|
|
|
2014-04-24 22:03:36 +00:00
|
|
|
(define-public doxygen
|
|
|
|
(package
|
|
|
|
(name "doxygen")
|
2022-09-05 12:19:20 +00:00
|
|
|
(version "1.9.5")
|
2021-05-16 11:21:03 +00:00
|
|
|
(home-page "https://www.doxygen.nl/")
|
2014-04-24 22:03:36 +00:00
|
|
|
(source (origin
|
2022-06-27 19:10:01 +00:00
|
|
|
(method url-fetch)
|
|
|
|
(uri (list (string-append home-page "files/doxygen-"
|
|
|
|
version ".src.tar.gz")
|
|
|
|
(string-append "mirror://sourceforge/doxygen/rel-"
|
|
|
|
version "/doxygen-" version
|
|
|
|
".src.tar.gz")))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2022-09-05 12:19:20 +00:00
|
|
|
"1v1f9cp5lyymg7xmw0ldnzi7ql8agbaqam1xdyljk0lrbnrm9d2m"))))
|
2016-01-20 12:09:53 +00:00
|
|
|
(build-system cmake-build-system)
|
2014-04-24 22:03:36 +00:00
|
|
|
(native-inputs
|
2022-06-27 19:10:01 +00:00
|
|
|
(list bison
|
|
|
|
flex
|
|
|
|
libxml2 ;provides xmllint for the tests
|
|
|
|
python)) ;for creating the documentation
|
2017-01-03 11:58:28 +00:00
|
|
|
(inputs
|
2022-06-27 19:10:01 +00:00
|
|
|
(list bash-minimal))
|
2014-04-24 22:03:36 +00:00
|
|
|
(arguments
|
2019-08-02 09:35:37 +00:00
|
|
|
;; Force cmake to use iconv header from cross-libc instead of the one
|
|
|
|
;; from native libc.
|
2022-06-27 19:10:01 +00:00
|
|
|
(list
|
|
|
|
#:configure-flags
|
|
|
|
(if (%current-target-system)
|
|
|
|
#~(list (string-append "-DICONV_INCLUDE_DIR="
|
|
|
|
(assoc-ref %build-inputs "cross-libc")
|
|
|
|
"/include"))
|
|
|
|
#~'())
|
|
|
|
#:test-target "tests"
|
|
|
|
#:phases
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'disable-bibtex-test
|
|
|
|
(lambda _
|
|
|
|
;; Disable test that requires bibtex to avoid a
|
|
|
|
;; circular dependency.
|
|
|
|
(for-each delete-file-recursively
|
|
|
|
'("testing/012" "testing/012_cite.dox"))))
|
|
|
|
(add-before 'configure 'patch-sh
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(let ((/bin/sh (search-input-file inputs "/bin/sh")))
|
|
|
|
(substitute* "src/portable.cpp"
|
|
|
|
(("/bin/sh")
|
2023-06-13 05:18:26 +00:00
|
|
|
/bin/sh)))))
|
|
|
|
#$@(if (target-hurd?)
|
|
|
|
#~((add-after 'unpack 'apply-patch
|
|
|
|
(lambda _
|
|
|
|
(let ((patch-file
|
|
|
|
#$(local-file
|
|
|
|
(search-patch "doxygen-hurd.patch"))))
|
|
|
|
(invoke "patch" "--force" "-p1" "-i" patch-file)))))
|
|
|
|
#~()))))
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 04:46:59 +00:00
|
|
|
(synopsis "Generate documentation from annotated sources")
|
2014-04-24 22:03:36 +00:00
|
|
|
(description "Doxygen is the de facto standard tool for generating
|
|
|
|
documentation from annotated C++ sources, but it also supports other popular
|
|
|
|
programming languages such as C, Objective-C, C#, PHP, Java, Python,
|
|
|
|
IDL (Corba, Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL, Tcl,
|
|
|
|
and to some extent D.")
|
|
|
|
(license gpl3+)))
|
2016-03-16 15:18:21 +00:00
|
|
|
|
|
|
|
(define-public doc++
|
|
|
|
(package
|
|
|
|
(name "doc++")
|
|
|
|
(version "3.4.10")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://sourceforge.net/projects/docpp/"
|
|
|
|
"files/doc++-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0i37zlxl8g352s4hzpdx0657k5x3czh3xcsfr27irc708gb277pn"))
|
|
|
|
(patches (search-patches "doc++-include-directives.patch"
|
|
|
|
"doc++-segfault-fix.patch"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 21:15:07 +00:00
|
|
|
(list flex gettext-minimal))
|
2023-01-22 00:00:01 +00:00
|
|
|
(home-page "https://docpp.sourceforge.net")
|
2016-03-16 15:18:21 +00:00
|
|
|
(synopsis "Documentation system for C, C++, IDL, and Java")
|
|
|
|
(description
|
|
|
|
"DOC++ is a documentation system for C, C++, IDL, and Java. It can
|
|
|
|
generate both TeX output for high-quality hardcopies or HTML output for online
|
gnu: Fix typoes in package descriptions.
* gnu/packages/audio.scm (caps-plugins-lv2)[synopsis]: Fix typo.
* gnu/packages/bioconductor.scm (r-karyoploter, r-anota, r-gcrma)
(r-bigmemoryextras)[description]: Likewise.
* gnu/packages/cran.scm (r-geometry)[synopsis]: Likewise.
(r-stringdist, r-patchwork, r-depth, r-tea)[description]: Likewise.
* gnu/packages/crates-io.scm (rust-assert-fs-0.11, rust-notify-4)
(rust-tokio-fs-0.1)[synopsis, description]: Likewise.
(rust-blas-sys-0.7)[description]: Likewise.
(rust-fs-extra-1.1, rust-xattr-0.2)[synopsis]: Likewise.
* gnu/packages/databases.scm (perl-mysql-config)[description]: Likewise.
* gnu/packages/disk.scm (hddtemp)[description]: Likewise.
* gnu/packages/django.scm (python-djangorestframework)[description]:
Likewise.
* gnu/packages/documentation.scm (doc++)[description]: Likewise.
* gnu/packages/emacs-xyz.scm (emacs-kakoune, emacs-pyim-basedict, eless)
(emacs-scpaste)[description]: Likewise.
* gnu/packages/file-systems.scm (dbxfs)[description]: Likewise.
* gnu/packages/finance.scm (python-stdnum)[description]: Likewise.
* gnu/packages/fontutils.scm (woff2)[description]: Likewise.
* gnu/packages/games.scm (openttd-opengfx)[description]: Likewise.
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-topicons-redux)
[description]: Likewise.
* gnu/packages/gnome.scm (libgrss)[description]: Likewise.
* gnu/packages/golang.scm (go-github-com-mitchellh-reflectwalk)
[description]: Likewise.
(go-github-com-go-git-go-billy)[synopsis, description]: Likewise.
* gnu/packages/haskell-check.scm (ghc-inspection-testing)[description]:
Likewise.
* gnu/packages/haskell-web.scm (ghc-yesod-form)[description]: Likewise.
* gnu/packages/haskell-xyz.scm (ghc-hex)[description]: Likewise.
* gnu/packages/hyperledger.scm (hyperledger-iroha-ed25519)[description]:
Likewise.
* gnu/packages/java.scm (java-mail)[synopsis]: Likewise.
(java-native-access-platform)[description]: Likewise.
* gnu/packages/kde-frameworks.scm (kactivities-stats)[description]:
Likewise.
* gnu/packages/kde-utils.scm (krusader)[description]: Likewise.
* gnu/packages/language.scm (praat)[description]: Likewise.
* gnu/packages/linux.scm (light)[description]: Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-hu.dwim.defclass-star)[description]:
Likewise.
* gnu/packages/mail.scm (dovecot-trees, sieve-connect)[description]:
Likewise.
* gnu/packages/ocaml.scm (ocaml-opam-file-format, ocaml-cppo)
(ocaml4.07-ppx-variants-conv)[description]: Likewise.
* gnu/packages/perl.scm (perl-convert-binhex)[description]: Likewise.
* gnu/packages/python-crypto.scm (python-ecdsa)[description]: Likewise.
* gnu/packages/python-web.scm (python-html5lib)[synopsis, description]:
Likewise.
(python-venusian)[synopsis]: Likewise.
* gnu/packages/python-xyz.scm (python-readlike, python-gssapi)
(python-flufl-i18n)[description]: Likewise.
(python-pox, python-watchdog, python-xattr)[synopsis, description]:
Likewise.
* gnu/packages/ruby.scm (ruby-sorcerer)[description]: Likewise.
* gnu/packages/rust-apps.scm (watchexec)[description]: Likewise.
* gnu/packages/rust.scm (mrustc)[synopsis]: Likewise.
* gnu/packages/shells.scm (s-shell)[description]: Likewise.
* gnu/packages/ssh.scm (sshpass)[description]: Likewise.
* gnu/packages/terminals.scm (beep)[description]: Likewise.
* gnu/packages/web.scm (perl-lwp-useragent-cached)[description]:
Likewise.
* gnu/packages/wv.scm (wv)[description]: Likewise.
2020-09-22 19:31:52 +00:00
|
|
|
browsing. The documentation is extracted directly from the C/C++/IDL source
|
2016-03-16 15:18:21 +00:00
|
|
|
or Java class files.")
|
|
|
|
(license gpl2+)))
|
2016-07-04 19:32:31 +00:00
|
|
|
|
2022-12-06 08:43:41 +00:00
|
|
|
(define-public pod2pdf
|
|
|
|
(package
|
|
|
|
(name "pod2pdf")
|
|
|
|
(version "0.42")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://cpan/authors/id/J/JO/JONALLEN/pod2pdf-"
|
|
|
|
version
|
|
|
|
".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0w5p7yy01vph74nfr9qzjb18p1avmhhcpza0qz9r88fmb0blbiyv"))))
|
|
|
|
(build-system perl-build-system)
|
|
|
|
(propagated-inputs
|
|
|
|
(list perl-getopt-argvfile
|
|
|
|
perl-pdf-api2
|
|
|
|
perl-pod-parser))
|
|
|
|
(home-page "https://metacpan.org/release/pod2pdf")
|
|
|
|
(synopsis "Convert Pod to PDF format")
|
|
|
|
(description "pod2pdf converts documents written in Perl's @acronym{POD, Plain Old
|
|
|
|
Documentation} format to PDF files. It also supports some extensions to the POD
|
|
|
|
format, and supports the file types JPG, GIF, TIFF, PNG, and PNM for embedded
|
|
|
|
objects.")
|
|
|
|
(license artistic2.0)))
|
|
|
|
|
2022-04-14 04:35:58 +00:00
|
|
|
(define-public python-docrepr
|
|
|
|
(package
|
|
|
|
(name "python-docrepr")
|
|
|
|
(version "0.2.0")
|
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/spyder-ide/docrepr")
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2023-05-22 20:17:39 +00:00
|
|
|
"1ma5gwy93m1djd3zdlnqfrwhgr8ic1qbsz5kkrb9f987ax40lfkd"))
|
|
|
|
(patches (search-patches "python-docrepr-fix-tests.patch"))))
|
2022-04-14 04:35:58 +00:00
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
(list
|
|
|
|
#:phases
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'patch-sources
|
|
|
|
(lambda _
|
|
|
|
;; XXX: This fixes an issue where shutil.copytree would fail
|
|
|
|
;; merging directories with same files copied by Sphinx from the
|
|
|
|
;; store (hence read-only, throwing a Permission denied error).
|
|
|
|
;; In the case this happens, it falls back to a manual copy
|
|
|
|
;; routine that omits overwriting same-named files (see:
|
|
|
|
;; https://github.com/spyder-ide/docrepr/issues/54).
|
|
|
|
(substitute* "docrepr/utils.py"
|
|
|
|
(("except TypeError")
|
|
|
|
"except (TypeError, shutil.Error)"))))
|
|
|
|
(replace 'check
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
(when tests?
|
|
|
|
(invoke "pytest" "-p" "no:warnings" "-vv")))))))
|
|
|
|
(native-inputs
|
|
|
|
(list python-ipython
|
|
|
|
python-matplotlib
|
|
|
|
python-numpy
|
|
|
|
python-pytest
|
|
|
|
python-pytest-asyncio))
|
|
|
|
(propagated-inputs
|
|
|
|
(list python-docutils
|
|
|
|
python-jinja2
|
|
|
|
python-matplotlib
|
|
|
|
python-sphinx))
|
|
|
|
(home-page "https://github.com/spyder-ide/docrepr/")
|
|
|
|
(synopsis "Python docstrings to HTML renderer")
|
|
|
|
(description "Docrepr renders Python docstrings to HTML with Sphinx. It
|
|
|
|
can generate rich and plain representations of docstrings, alongside
|
|
|
|
additional metadata about the object to which the docstring belongs.")
|
|
|
|
(license bsd-3)))
|
|
|
|
|
2016-07-04 19:32:31 +00:00
|
|
|
(define-public scrollkeeper
|
|
|
|
(package
|
|
|
|
(name "scrollkeeper")
|
|
|
|
(version "0.3.14")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2016-07-21 06:35:30 +00:00
|
|
|
(uri (string-append "mirror://sourceforge/scrollkeeper/scrollkeeper/"
|
|
|
|
version "/scrollkeeper-" version ".tar.gz"))
|
2016-07-04 19:32:31 +00:00
|
|
|
(sha256
|
|
|
|
(base32 "1bfxwxc1ngh11v36z899sz9qam366r050fhkyb5adv65lb1x62sa"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list (string-append "--with-xml-catalog="
|
|
|
|
(assoc-ref %build-inputs "docbook-xml")
|
|
|
|
"/xml/dtd/docbook/catalog.xml"))))
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list perl libxml2 libxslt
|
|
|
|
;; The configure script checks for either version 4.2 or 4.1.2.
|
|
|
|
docbook-xml-4.2))
|
2016-07-04 19:32:31 +00:00
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list intltool))
|
gnu: Use HTTPS package home pages wherever possible.
* gnu/packages/accessibility.scm (florence)[home-page]: Use HTTPS.
* gnu/packages/admin.scm (netcat, nmon)[home-page]: Likewise.
* gnu/packages/algebra.scm (mpfrcx, cm, flint, fftw, r-dtt)[home-page]:
Likewise.
* gnu/packages/apr.scm (apr, apr-util)[home-page]: Likewise.
* gnu/packages/aspell.scm (aspell-dict-it)[home-page]: Likewise.
* gnu/packages/astronomy.scm (casacore, sextractor, libnova)
(xplanet)[home-page]: Likewise.
* gnu/packages/audio.scm (libtimidity, alsa-modular-synth, azr3, tao)
(freepats, rakarrack, liblo, libshout-idjc, timidity++, libsbsms)
(libmodplug, libxmp, xmp, sox, drc, gsm, gnaural)
(streamripper)[home-page]: Likewise.
* gnu/packages/authentication.scm (pamtester)[home-page]: Likewise.
* gnu/packages/backup.scm (grsync)[home-page]: Likewise.
* gnu/packages/bioconductor.scm (r-nmf, r-edger, r-limma)
(r-plgem)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (python-biom-format, bowtie, bowtie1)
(bwa, crossmap, java-htsjdk, java-htsjdk-latest, java-picard)
(java-picard-2.10.3, kaiju, proteinortho, rsem, rseqc, seek, samtools)
(snap-aligner, subread, stringtie, r-centipede, prinseq, emboss, phylip)
(libsbml)[home-page]: Likewise.
* gnu/packages/build-tools.scm (tup)[home-page]: Likewise.
* gnu/packages/cdrom.scm (libcddb, cdrdao, cdrtools)
(cd-discid)[home-page]: Likewise.
* gnu/packages/check.scm (cunit, python-nose)
(python-pyhamcrest)[home-page]: Likewise.
* gnu/packages/chemistry.scm (gromacs)[home-page]: Likewise.
* gnu/packages/chez.scm (chez-fmt)[home-page]: Likewise.
* gnu/packages/code.scm (lcov, uncrustify, cscope)[home-page]: Likewise.
* gnu/packages/compression.scm (p7zip)[home-page]: Likewise.
* gnu/packages/cran.scm (r-emdist, r-proj4, r-zoo, r-ggalluvial)
(r-orgmassspecr, r-polychrome, r-partykit, r-rcpp, r-ff, r-emdbook)
(r-fitdistrplus, r-linprog, r-geometry, r-dtw, r-fst, r-rjags)
(r-intergraph, r-qualv, r-labelled, r-survey, r-coin, r-fmsb, r-tm)
(r-corpcor, r-rmpfr, r-spatialextremes, r-longitudinal, r-genenet)
(r-bayesm, r-seqinr, r-mpm, r-text2vec, r-rgdal, r-seewave, r-hdrcde)
(r-shapes, r-anytime, r-stm, r-d3network, r-tam, r-directlabels)
(r-spatstat-utils, r-spatstat-sparse, r-spatstat-data, r-spatstat-geom)
(r-spatstat-core, r-spatstat-linnet, r-spatstat-random, r-spatstat)
(r-rcpptoml, r-mlecens, r-seurat, r-mlearning, r-zooimage)[home-page]:
Likewise.
* gnu/packages/crates-io.scm (rust-nickel-0.11, rust-thrift-0.13)
(rust-trust-dns-https-0.20, rust-trust-dns-native-tls-0.20)
(rust-trust-dns-openssl-0.20, rust-trust-dns-proto-0.20)
(rust-trust-dns-resolver-0.20, rust-trust-dns-rustls-0.20)
(rust-uint-0.9, rust-yaml-rust-0.4)[home-page]: Likewise.
* gnu/packages/crypto.scm (libdecaf, ccrypt)[home-page]: Likewise.
* gnu/packages/curl.scm (curlpp)[home-page]: Likewise.
* gnu/packages/databases.scm (python-pylibmc, unixodbc, wiredtiger)
(libpqxx, mdbtools, virtuoso-ose, libdbi, libdbi-drivers)
(soci)[home-page]: Likewise.
* gnu/packages/debian.scm (apt-mirror)[home-page]: Likewise.
* gnu/packages/debug.scm (remake)[home-page]: Likewise.
* gnu/packages/disk.scm (sdparm, idle3-tools, duc)[home-page]: Likewise.
* gnu/packages/django.scm (python-django-haystack)[home-page]: Likewise.
* gnu/packages/djvu.scm (djvulibre, djview)[home-page]: Likewise.
* gnu/packages/dns.scm (dnsmasq)[home-page]: Likewise.
* gnu/packages/docbook.scm (dblatex, docbook2x)[home-page]: Likewise.
* gnu/packages/documentation.scm (scrollkeeper)[home-page]: Likewise.
* gnu/packages/ebook.scm (liblinebreak)[home-page]: Likewise.
* gnu/packages/electronics.scm (xoscope)[home-page]: Likewise.
* gnu/packages/emacs-xyz.scm (emacs-bbdb, emacs-caps-lock, emacs-djvu)
(emacs-pabbrev, emacs-twittering-mode, emacs-filladapt, emacs-rudel)
(emacs-stream, emacspeak, emacs-cc-mode, emacs-eldoc, emacs-jsonrpc)
(emacs-gtk-look, emacs-xclip, emacs-slime-volleyball, emacs-minimap)
(emacs-auto-dictionary-mode, emacs-persist, emacs-shell-command+)
(emacs-map, emacs-xref, emacs-dictionary)[home-page]: Likewise.
* gnu/packages/embedded.scm (sdcc)[home-page]: Likewise.
* gnu/packages/engineering.scm (asco, libngspice, libspnav)
(openctm)[home-page]: Likewise.
* gnu/packages/erlang.scm (erlang-erlware-commons)[home-page]: Likewise.
* gnu/packages/file-systems.scm (jfsutils, curlftpfs)[home-page]:
Likewise.
* gnu/packages/finance.scm (gbonds)[home-page]: Likewise.
* gnu/packages/flashing-tools.scm (dfu-util, srecord)[home-page]:
Likewise.
* gnu/packages/fltk.scm (ntk)[home-page]: Likewise.
* gnu/packages/fonts.scm (font-terminus, font-tex-gyre)
(font-comic-neue)[home-page]: Likewise.
* gnu/packages/fontutils.scm (ttf2pt1, potrace, libspiro)[home-page]:
Likewise.
* gnu/packages/fpga.scm (icestorm, gtkwave, gtkwave)
(python-myhdl)[home-page]: Likewise.
* gnu/packages/freedesktop.scm (libatasmart)[home-page]: Likewise.
* gnu/packages/ftp.scm (weex)[home-page]: Likewise.
* gnu/packages/game-development.scm (dds, python-tmx, sfxr, quesoglc)
(eureka, plib)[home-page]: Likewise.
* gnu/packages/games.scm (abe, alex4, armagetronad, barony)
(foobillard++, golly, ltris, pipewalker, prboom-plus, trigger-rally)
(cmatrix, pinball, pioneers, tennix, chromium-bsu, freeciv, kiki)
(quakespasm, frotz, frotz-dumb-terminal, frotz-sdl, btanks)
(flare-engine, chessx, barrage, cgoban, passage)[home-page]: Likewise.
* gnu/packages/geo.scm (python-geopandas, saga)[home-page]: Likewise.
* gnu/packages/gl.scm (freeglut, gl2ps)[home-page]: Likewise.
* gnu/packages/gnome.scm (cogl, clutter-gtk, clutter-gst, bluefish)
(workrave)[home-page]: Likewise.
* gnu/packages/gnustep.scm (wmnd, wmfire, wmfire)[home-page]: Likewise.
* gnu/packages/graph.scm (mscgen)[home-page]: Likewise.
* gnu/packages/graphics.scm (assimp, alembic, ctl, agg)
(opencsg)[home-page]: Likewise.
* gnu/packages/graphviz.scm (gts)[home-page]: Likewise.
* gnu/packages/gtk.scm (gtkspell3)[home-page]: Likewise.
* gnu/packages/guile-xyz.scm (guile-irregex)[home-page]: Likewise.
* gnu/packages/haskell-apps.scm (cpphs)[home-page]: Likewise.
* gnu/packages/haskell-check.scm (ghc-hunit)[home-page]: Likewise.
* gnu/packages/haskell-web.scm (ghc-http-client-restricted)
(ghc-blaze-html, ghc-happstack-server, ghc-sourcemap)[home-page]:
Likewise.
* gnu/packages/haskell-xyz.scm (ghc-assoc, ghc-cairo, ghc-cborg)
(ghc-csv, ghc-glob, ghc-gtk2hs-buildtools, ghc-hmatrix-gsl-stats)
(ghc-intervalmap, ghc-lens-family-core, ghc-managed, ghc-mountpoints)
(ghc-network-multicast, ghc-optional-args, ghc-regex, ghc-spoon)
(ghc-transformers, ghc-turtle, ghc-utf8-light, ghc-wizards)
(ghc-template-haskell, ghc-boot-th, ghc-binary-orphans)
(ghc-postgresql-simple)[home-page]: Likewise.
* gnu/packages/hexedit.scm (ht, bvi)[home-page]: Likewise.
* gnu/packages/hunspell.scm (hunspell-dict-hu)[home-page]: Likewise.
* gnu/packages/image-processing.scm (mia)[home-page]: Likewise.
* gnu/packages/image-viewers.scm (geeqie, gpicview, luminance-hdr)
(qiv)[home-page]: Likewise.
* gnu/packages/image.scm (libuemf, devil, steghide, optipng, niftilib)
(sng, mtpaint)[home-page]: Likewise.
* gnu/packages/java-xml.scm (java-simple-xml, java-jaxp)
(java-apache-xml-commons-resolver)[home-page]: Likewise.
* gnu/packages/java.scm (java-cisd-base, java-cisd-args4j)
(java-hamcrest-core, java-jsr305, java-eclipse-osgi)
(java-eclipse-equinox-common, java-eclipse-core-jobs)
(java-eclipse-equinox-registry, java-eclipse-equinox-app)
(java-eclipse-equinox-preferences, java-eclipse-core-contenttype)
(java-eclipse-text, java-treelayout, java-aopalliance, java-jeromq)
(java-cdi-api)[home-page]: Likewise.
* gnu/packages/jemalloc.scm (jemalloc-4.5.0)[home-page]: Likewise.
* gnu/packages/julia-xyz.scm (julia-recipespipeline)[home-page]:
Likewise.
* gnu/packages/kde-internet.scm (kget)[home-page]: Likewise.
* gnu/packages/kde-systemtools.scm (dolphin-plugins)
(konsole)[home-page]: Likewise.
* gnu/packages/kodi.scm (fstrcmp)[home-page]: Likewise.
* gnu/packages/language.scm (hime, libchewing)[home-page]: Likewise.
* gnu/packages/lego.scm (nqc)[home-page]: Likewise.
* gnu/packages/lesstif.scm (lesstif)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (libcanberra)[home-page]: Likewise.
* gnu/packages/libdaemon.scm (libdaemon)[home-page]: Likewise.
* gnu/packages/libffi.scm (libffi)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (libwpd, libwpg, libwps)[home-page]:
Likewise.
* gnu/packages/libusb.scm (libmtp, gmtp)[home-page]: Likewise.
* gnu/packages/linux.scm (e2fsprogs, extundelete, lsscsi, net-tools)
(kbd, sysfsutils, cpuid, libpfm4)[home-page]: Likewise.
* gnu/packages/lisp-check.scm (sbcl-ptester, sbcl-xlunit)[home-page]:
Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-html-encode, sbcl-py-configparser)
(sbcl-cl-utilities, sbcl-series, sbcl-uffi, sbcl-clsql, sbcl-sycamore)
(sbcl-osicat, sbcl-hu.dwim.common, sbcl-caveman, sbcl-trivial-shell)
(sbcl-trivial-benchmark, sbcl-screamer, sbcl-smug)[home-page]: Likewise.
* gnu/packages/lisp.scm (lush2)[home-page]: Likewise.
* gnu/packages/logging.scm (log4cpp)[home-page]: Likewise.
* gnu/packages/lua.scm (lua-ldoc)[home-page]: Likewise.
* gnu/packages/machine-learning.scm (mcl, openfst, rxcpp)[home-page]:
Likewise.
* gnu/packages/mail.scm (muchsync, procmail, sendmail)
(opensmtpd-filter-dkimsign, crm114)[home-page]: Likewise.
* gnu/packages/man.scm (libpipeline, man-db)[home-page]: Likewise.
* gnu/packages/maths.scm (lapack, scalapack, hdf-eos5, itpp, gmsh)
(metamath, p4est, armadillo, suitesparse, atlas, lpsolve, wcalc, why3)
(frama-c)[home-page]: Likewise.
* gnu/packages/mcrypt.scm (mcrypt, libmcrypt, libmhash)[home-page]:
Likewise.
* gnu/packages/minetest.scm (minetest-advtrains)[home-page]: Likewise.
* gnu/packages/monitoring.scm (python-whisper, python-carbon)
(hostscope)[home-page]: Likewise.
* gnu/packages/mp3.scm (id3lib, libmp3splt, mp3splt, mpg321)
(lame)[home-page]: Likewise.
* gnu/packages/multiprecision.scm (mpc)[home-page]: Likewise.
* gnu/packages/music.scm (aria-maestosa, lingot, setbfree, bristol)
(portmidi, python-pyportmidi, zynaddsubfx, yoshimi, aj-snapshot)
(schismtracker, midicsv, midicsv, qmidiarp, qmidiroute, dssi, tap-lv2)
(shiru-lv2)[home-page]: Likewise.
* gnu/packages/ncurses.scm (stfl)[home-page]: Likewise.
* gnu/packages/networking.scm (lksctp-tools, mbuffer, ifstatus, bird)
(tunctl, traceroute)[home-page]: Likewise.
* gnu/packages/node-xyz.scm (node-mersenne)[home-page]: Likewise.
* gnu/packages/ntp.scm (openntpd)[home-page]: Likewise.
* gnu/packages/ocaml.scm (opam, hevea, ocaml-menhir, ocaml-piqilib)
(ocaml-graph, cubicle)[home-page]: Likewise.
* gnu/packages/opencl.scm (python-pyopencl)[home-page]: Likewise.
* gnu/packages/package-management.scm (xstow, modules)[home-page]:
Likewise.
* gnu/packages/parallel.scm (xjobs)[home-page]: Likewise.
* gnu/packages/pdf.scm (podofo, qpdf, xournal, impressive)[home-page]:
Likewise.
* gnu/packages/perl.scm (perl-math-vecstat, perltidy)[home-page]:
Likewise.
* gnu/packages/photo.scm (libpano13, enblend-enfuse, hugin)[home-page]:
Likewise.
* gnu/packages/plan9.scm (drawterm)[home-page]: Likewise.
* gnu/packages/plotutils.scm (guile-charting, ploticus)[home-page]:
Likewise.
* gnu/packages/popt.scm (argtable, popt)[home-page]: Likewise.
* gnu/packages/profiling.scm (otf2)[home-page]: Likewise.
* gnu/packages/pulseaudio.scm (pulseaudio)[home-page]: Likewise.
* gnu/packages/python-check.scm (python-mypy)[home-page]: Likewise.
* gnu/packages/python-web.scm (python-cssutils)
(python-translationstring)[home-page]: Likewise.
* gnu/packages/python-xyz.scm (python-diskcache, python-doxyqml)
(python-docutils, python-pexpect, python-importlib-resources)
(python-simplegeneric, python-urwid, python-xlrd, python-xlwt)
(python-pyasn1, python-pythondialog, python-tftpy, python-random2)
(python-arcp, python-pyopengl, python-sortedcollections)
(python-sortedcontainers, python-yapsy, python-pydispatcher)
(python-posix-ipc)[home-page]: Likewise.
* gnu/packages/qt.scm (qwt, libqglviewer, signond)[home-page]: Likewise.
* gnu/packages/radio.scm (unixcw, gnuais)[home-page]: Likewise.
* gnu/packages/raspberry-pi.scm (bcm2835)[home-page]: Likewise.
* gnu/packages/rdf.scm (clucene, rasqal, redland)[home-page]: Likewise.
* gnu/packages/regex.scm (tre)[home-page]: Likewise.
* gnu/packages/rsync.scm (librsync)[home-page]: Likewise.
* gnu/packages/ruby.scm (ruby-packnga, ruby-nokogiri, ruby-oj, ruby-ox)
(ruby-sinatra, ruby-citrus, ruby-cbor, ruby-roda)[home-page]: Likewise.
* gnu/packages/scheme.scm (scheme48, tinyscheme)[home-page]: Likewise.
* gnu/packages/screen.scm (dtach)[home-page]: Likewise.
* gnu/packages/scsi.scm (sg3-utils)[home-page]: Likewise.
* gnu/packages/sdl.scm (libmikmod, sdl-pango)[home-page]: Likewise.
* gnu/packages/shellutils.scm (hstr, rig)[home-page]: Likewise.
* gnu/packages/simulation.scm (python-dolfin-adjoint)[home-page]:
Likewise.
* gnu/packages/smalltalk.scm (smalltalk)[home-page]: Likewise.
* gnu/packages/speech.scm (espeak)[home-page]: Likewise.
* gnu/packages/stalonetray.scm (stalonetray)[home-page]: Likewise.
* gnu/packages/statistics.scm (jags, r-mass, r-class, r-lattice)
(r-matrix, r-nnet, r-spatial, r-bit, r-bit64, r-digest, r-xtable)
(python-statsmodels, r-ade4, r-latticeextra, r-rcurl, r-xml, r-mvtnorm)
(r-robustbase, r-minqa, r-fdrtool, java-jdistlib, xlispstat)[home-page]:
Likewise.
* gnu/packages/swig.scm (swig)[home-page]: Likewise.
* gnu/packages/task-management.scm (wtime)[home-page]: Likewise.
* gnu/packages/tcl.scm (itcl, tclxml, tclx)[home-page]: Likewise.
* gnu/packages/terminals.scm (libtermkey, mlterm, libvterm)
(libvterm)[home-page]: Likewise.
* gnu/packages/tex.scm (texlive-lm, texlive-lm-math, texlive-cs)
(texlive-csplain, biber, texmaker)[home-page]: Likewise.
* gnu/packages/text-editors.scm (joe)[home-page]: Likewise.
* gnu/packages/textutils.scm (drm-tools, docx2txt)[home-page]: Likewise.
* gnu/packages/tv.scm (tvtime)[home-page]: Likewise.
* gnu/packages/unicode.scm (libunibreak)[home-page]: Likewise.
* gnu/packages/upnp.scm (libupnp)[home-page]: Likewise.
* gnu/packages/version-control.scm (cvs)[home-page]: Likewise.
* gnu/packages/video.scm (transcode, libquicktime, mjpegtools, aalib)
(liba52, libmpeg2, x265, libdv, dvdauthor, aegisub, pitivi, gavl)
(dvdbackup, guvcview, video-contact-sheet)[home-page]: Likewise.
* gnu/packages/virtualization.scm (bochs)[home-page]: Likewise.
* gnu/packages/w3m.scm (w3m)[home-page]: Likewise.
* gnu/packages/web.scm (qjson, libquvi-scripts, libquvi, quvi)
(tidy-html, htmlcxx)[home-page]: Likewise.
* gnu/packages/wm.scm (evilwm, menumaker)[home-page]: Likewise.
* gnu/packages/wv.scm (wv)[home-page]: Likewise.
* gnu/packages/wxwidgets.scm (wxsvg)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (mtdev, xsel)[home-page]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[home-page]: Likewise.
* gnu/packages/xml.scm (openjade, python-pyxb, xmlstarlet, xmlrpc-c)
(opensp)[home-page]: Likewise.
* gnu/packages/xorg.scm (xf86-video-qxl)[home-page]: Likewise.
2023-02-12 00:00:00 +00:00
|
|
|
(home-page "https://scrollkeeper.sourceforge.net/")
|
2016-07-04 19:32:31 +00:00
|
|
|
(synopsis "Open Documentation Cataloging Project")
|
2022-08-14 00:00:00 +00:00
|
|
|
(description
|
|
|
|
"ScrollKeeper is a cataloging system for documentation. It manages
|
|
|
|
documentation metadata as specified by the Open Source Metadata Framework and
|
|
|
|
provides a simple API to allow help browsers to find, sort, and search the
|
|
|
|
document catalog. It will also be able to communicate with catalog servers on
|
|
|
|
the Net to search for documents which are not on the local system.")
|
2016-07-04 19:32:31 +00:00
|
|
|
(license lgpl2.1+)))
|
2020-07-30 05:39:45 +00:00
|
|
|
|
|
|
|
(define-public zeal
|
2023-06-02 12:18:20 +00:00
|
|
|
(let ((commit "1cfa7c637f745be9d98777f06b4f8dec90892bf2")
|
2021-02-04 22:54:26 +00:00
|
|
|
(revision "1"))
|
|
|
|
(package
|
|
|
|
(name "zeal")
|
|
|
|
(version (git-version "0.6.1" revision commit))
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/zealdocs/zeal")
|
|
|
|
(commit commit)))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
2023-06-02 12:18:20 +00:00
|
|
|
(base32 "1m7pp3cwc21x03718vhwfd9j2n8md3hv5dp10s234vcsd755s7a3"))))
|
2021-02-04 22:54:26 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ;no tests
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'wrap 'wrap-qt-process-path
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin/zeal"))
|
|
|
|
(qt-process-path (string-append
|
2022-07-18 11:57:16 +00:00
|
|
|
(assoc-ref inputs "qtwebengine-5")
|
2021-02-04 22:54:26 +00:00
|
|
|
"/lib/qt5/libexec/QtWebEngineProcess")))
|
|
|
|
(wrap-program bin
|
|
|
|
`("QTWEBENGINEPROCESS_PATH" = (,qt-process-path)))
|
|
|
|
#t))))))
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules pkg-config))
|
2021-02-04 22:54:26 +00:00
|
|
|
(inputs
|
|
|
|
`(("libarchive" ,libarchive)
|
|
|
|
("sqlite" ,sqlite)
|
2021-04-10 01:53:32 +00:00
|
|
|
("qtbase" ,qtbase-5)
|
2022-07-18 01:03:18 +00:00
|
|
|
("qtdeclarative-5" ,qtdeclarative-5)
|
2022-07-18 04:02:58 +00:00
|
|
|
("qtwebchannel-5" ,qtwebchannel-5)
|
2022-07-18 11:57:16 +00:00
|
|
|
("qtwebengine-5" ,qtwebengine-5)
|
2022-07-18 03:47:28 +00:00
|
|
|
("qtquickcontrols-5" ,qtquickcontrols-5)
|
2021-02-04 22:54:26 +00:00
|
|
|
("qtx11extras" ,qtx11extras)
|
|
|
|
("xcb-util-keyms" ,xcb-util-keysyms)))
|
|
|
|
(home-page "https://zealdocs.org/")
|
|
|
|
(synopsis "Offline documentation browser inspired by Dash")
|
|
|
|
(description "Zeal is a simple offline documentation browser
|
2020-07-30 05:39:45 +00:00
|
|
|
inspired by Dash.")
|
2021-02-04 22:54:26 +00:00
|
|
|
(license gpl3+))))
|