diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 10:48:06 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:18:05 +0200 |
commit | ba81602c2449f05dc025b24afc4311abfed78bb6 (patch) | |
tree | c2af51e61cbaa0ea130973a3b5a37008391c4d88 /gnu/packages | |
parent | 15c3f3f6e3d95153fab6a279be5523596ba6d4b9 (diff) | |
download | guix-ba81602c2449f05dc025b24afc4311abfed78bb6.tar.gz |
gnu: Add texlive-tikztosvg.
* gnu/packages/tex.scm (texlive-tikztosvg): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d3970706ef..bae8719be1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5262,6 +5262,28 @@ PGFPlots to a given width or height without changing the text size.") "The package provides various emoticons, cooking symbols and trees.") (license license:lppl1.3c))) +(define-public texlive-tikztosvg + (package + (name "texlive-tikztosvg") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/man/man1/tikztosvg.1" + "doc/man/man1/tikztosvg.man1.pdf" + "doc/support/tikztosvg/" + "scripts/tikztosvg/") + (base32 + "1h1g3vsljx3bz929krr21i65n20drwhwxi88gwcvrxrgsvi9xj08"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:link-scripts #~(list "tikztosvg"))) + (home-page "https://ctan.org/pkg/tikztosvg") + (synopsis "Utility for rendering TikZ diagrams to SVG") + (description + "This package provides a shell script that calls XeTeX and +@command{pdf2svg} to convert TikZ environments to SVG files.") + (license license:gpl3))) + (define-public texlive-amiri (package (name "texlive-amiri") |