me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-graphviz.

* gnu/packages/tex.scm (texlive-graphviz): New variable.
Nicolas Goaziou 2023-07-13 00:33:11 +02:00
parent 1dbdd0feea
commit 3384b68dcf
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 19 additions and 0 deletions

View File

@ -17435,6 +17435,25 @@ it.")
@code{graphicx} package with the @command{convert} command from ImageMagick.") @code{graphicx} package with the @command{convert} command from ImageMagick.")
(license license:expat))) (license license:expat)))
(define-public texlive-graphviz
(package
(name "texlive-graphviz")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/graphviz/"
"source/latex/graphviz/"
"tex/latex/graphviz/")
(base32
"0abg1cmzr449gd5pbg3ppgf35xixjyszy3jxnrg37kqly7c26l6s")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/graphviz")
(synopsis "Write Graphviz inline in LaTeX documents")
(description
"The package allows inline use of Graphviz code, in a LaTeX document.")
(license license:lppl1.3+)))
(define-public texlive-inlinedef (define-public texlive-inlinedef
(package (package
(name "texlive-inlinedef") (name "texlive-inlinedef")