summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSergey Trofimov <sarg@sarg.org.ru>2026-01-28 14:39:36 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:51 +0100
commit7e917411d5ff3e7b03eb3fde3a68b9b1637fa794 (patch)
tree6b57a4c1ea1704416f1c82de878c7e60496b4bae /gnu
parent44f1c6e466924aff499e83d5f43b2e0a7bc217cc (diff)
gnu: Add python-sphinxcontrib-doxylink.
* gnu/packages/sphinx.scm (python-sphinxcontrib-doxylink): New variable. Change-Id: Iab4fe13e8fe3a6285d515e7fc6968ec7d0ef94e3 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/sphinx.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 4702659f1c8..f5b26ea1afe 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -49,6 +49,7 @@
#:use-module (gnu packages)
#:use-module (gnu packages nss)
#:use-module (gnu packages check)
+ #:use-module (gnu packages documentation)
#:use-module (gnu packages fonts)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages graphviz)
@@ -494,6 +495,31 @@ size responsive web components.")
@url{Devhelp,https://wiki.gnome.org/Apps/Devhelp} documents.")
(license license:bsd-2)))
+(define-public python-sphinxcontrib-doxylink
+ (package
+ (name "python-sphinxcontrib-doxylink")
+ (version "1.13.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/sphinx-contrib/doxylink")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1jl019g65jfnam1pqqw0r95iaary8xyqqx797v9qq6r17vp141dy"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-dateutil python-pyparsing))
+ (native-inputs (list doxygen python-poetry-core python-testfixtures
+ python-sphinx python-pytest))
+ (home-page "https://github.com/sphinx-contrib/doxylink")
+ (synopsis "Sphinx extension for linking to Doxygen documentation")
+ (description
+ "Doxylink is a Sphinx extension to link to external Doxygen API
+documentation. It allows you to specify C++ symbols and it will convert them
+into links to the HTML page of their Doxygen documentation.")
+ (license license:bsd-3)))
+
(define-public python-sphinxcontrib-github-alt
(package
(name "python-sphinxcontrib-github-alt")