From fa60852c2f95e0ebd48117d604db5c2f56641b89 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 18 Jun 2023 18:33:25 +0200 Subject: [PATCH] gnu: Add texlive-context-handlecsv. * gnu/packages/tex.scm (texlive-context-handlecsv): 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 c56bc0dbf4..f8cf7f72f8 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10319,6 +10319,25 @@ (define-public texlive-context-gnuplot 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")