diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-14 22:57:18 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:11:09 +0200 |
commit | e9af8651ed3a3cc1f554c6f3c8a612a0dce00c00 (patch) | |
tree | 5b20a5323b547951a15cb9209d476407cb1ae839 | |
parent | 38bef53c0b8081c7cb67e12b55fc73c3ed37bea2 (diff) | |
download | guix-e9af8651ed3a3cc1f554c6f3c8a612a0dce00c00.tar.gz guix-e9af8651ed3a3cc1f554c6f3c8a612a0dce00c00.zip |
gnu: Add texlive-gincltex.
* gnu/packages/tex.scm (texlive-gincltex): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 0989eecc04..109c3e8468 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3498,6 +3498,30 @@ verbatim source).") (define-deprecated-package texlive-latex-fancyvrb texlive-fancyvrb) +(define-public texlive-gincltex + (package + (name "texlive-gincltex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/gincltex/" "source/latex/gincltex/" + "tex/latex/gincltex/") + (base32 + "1x6bsf445dp8wc5hfgyywlal8vky5w23d69zlpybkp2d9am9a71p"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs + (list texlive-adjustbox + texlive-svn-prov)) + (home-page "https://ctan.org/pkg/gincltex") + (synopsis "Include TeX files as graphics") + (description + "The package builds on the standard LaTeX packages @code{graphics} and +allows external LaTeX source files to be included, in the same way as graphic +files, by @code{\\includegraphics}. In effect, then package adds support for +the @file{.tex} extension.") + (license license:lppl1.3+))) + (define-public texlive-glyphlist (package (inherit (simple-texlive-package |