From 9ae3f6f8ed0fbb77b228484a064525d7921eea1f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:46:03 +0200 Subject: [PATCH] gnu: Add texlive-clistmap. * gnu/packages/tex.scm (texlive-clistmap): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 88428512a2..04954028ee 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -76141,6 +76141,26 @@ (define-public texlive-clipboard @code{copypaste} package.") (license license:lppl1.3+))) +(define-public texlive-clistmap + (package + (name "texlive-clistmap") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/clistmap/" + "source/latex/clistmap/" + "tex/latex/clistmap/") + (base32 + "19chjqjmfcllaf6i1i5zspjvh6j5ljr6lh6w12f9b6h4941ncx58"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/clistmap") + (synopsis "Map and iterate over LaTeX3 clists") + (description + "This package provides a key-based interface for defining templates whose job +is to partition LaTeX3 clists and map differentiatedly across its components.") + (license license:lppl1.3c))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar