From 3384b68dcf235829294d9e599ba5733b503feab3 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 13 Jul 2023 00:33:11 +0200 Subject: [PATCH] gnu: Add texlive-graphviz. * gnu/packages/tex.scm (texlive-graphviz): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index bec01bb17f..88e11d63cd 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -17435,6 +17435,25 @@ it.") @code{graphicx} package with the @command{convert} command from ImageMagick.") (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 (package (name "texlive-inlinedef")