diff options
| author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-18 18:33:25 +0200 |
|---|---|---|
| committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:15:25 +0200 |
| commit | fa60852c2f95e0ebd48117d604db5c2f56641b89 (patch) | |
| tree | c10a71a433751e202751ba3d3539c5bdabebd4fa | |
| parent | c5a8833c5f4e156bf0af213d270a2139a9a08b90 (diff) | |
gnu: Add texlive-context-handlecsv.
* gnu/packages/tex.scm (texlive-context-handlecsv): New variable.
| -rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c56bc0dbf4..f8cf7f72f8 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10319,6 +10319,25 @@ Gnuplot. It writes a script into temporary file, runs Gnuplot and includes the resulting graphic directly into the document.") (license license:gpl3+))) +(define-public texlive-context-handlecsv + (package + (name "texlive-context-handlecsv") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/context/third/handlecsv/" + "tex/context/third/handlecsv/") + (base32 + "0g5lxyj7v64mvfdhw96sqwjgxcka1nh6glbv040rrkx1p3j2r55x"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-context)) + (home-page "https://ctan.org/pkg/context-handlecsv") + (synopsis "Data merging for automatic document creation") + (description + "The package handles CSV data merging for automatic document creation.") + (license license:gpl3))) + (define-public texlive-beamer (package (name "texlive-beamer") |
