gnu: Add texlive-dot2texi.

* gnu/packages/tex.scm (texlive-dot2texi): New variable.
This commit is contained in:
Nicolas Goaziou 2023-07-12 22:21:05 +02:00
parent 5332693c3c
commit b7618a44af
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -16791,6 +16791,27 @@ (define-public texlive-doc-pictex
(list
(license:fsf-free "share/texmf-dist/doc/generic/doc-pictex/Doc-PiCTeX.txt")))))
(define-public texlive-dot2texi
(package
(name "texlive-dot2texi")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/dot2texi/" "tex/latex/dot2texi/")
(base32
"1m8774ds3hsky4nk0krj4a582fyznrxdfbfma5z8hp083nrlm469")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/dot2texi")
(synopsis "Create graphs within LaTeX using the @code{dot2tex} tool")
(description
"The @code{dot2texi} package allows you to embed graphs in the DOT graph
description language in your LaTeX documents. The @code{dot2tex} tool is used
to invoke Graphviz for graph layout, and to transform the output from Graphviz
to LaTeX code. The generated code relies on the TikZ and PGF package or the
PSTricks package.")
(license license:gpl3+)))
(define-public texlive-gates
(package
(name "texlive-gates")