diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 15:18:23 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:38 +0200 |
commit | e331b8731748804faba177be493e37063682f48c (patch) | |
tree | 52e5464579365f9cd87522f216d177534509be63 | |
parent | 71f2166aab4e2431d881c55a728878c8c3286673 (diff) |
gnu: Add texlive-tsvtemplate.
* gnu/packages/tex.scm (texlive-tsvtemplate): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 398c7004ac..4e75bcd2b9 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -14181,6 +14181,26 @@ a simple and visually appealing way. The package takes several options to enable customization and finetuning of the visual appearance.") (license license:lppl1.3+))) +(define-public texlive-tsvtemplate + (package + (name "texlive-tsvtemplate") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/luatex/tsvtemplate/" + "tex/luatex/tsvtemplate/") + (base32 + "05q1vfsy9w0pmc489dl995iqr9srdv107mj89nlc269m3wjnwn7a"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tsvtemplate") + (synopsis "Apply a template to a TSV file") + (description + "This is a simple TSV (tab-separated values) reader for LuaLaTeX and +plain LuaTeX. It also supports (non-quoted) comma-separated values, or indeed +values separated by any character.") + (license license:eupl1.2))) + (define-public texlive-units (package (name "texlive-units") |