From 9d7283195990c83a0d24fdd66e3dda6e16fe407a Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:54:24 +0200 Subject: [PATCH] gnu: Add texlive-lmake. * gnu/packages/tex.scm (texlive-lmake): 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 f2987cc266..4122c7ca64 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -87382,6 +87382,25 @@ (define-public texlive-lkproof that are used in constructing LK proof diagrams.") (license license:gpl3+))) +(define-public texlive-lmake + (package + (name "texlive-lmake") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/lmake/" "source/latex/lmake/" + "tex/latex/lmake/") + (base32 + "0d3bn1rbnmv1ai7ciiym6z10yrpca3c7f5phsf49hbrpp3x4whpj"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/lmake") + (synopsis "Process lists to do repetitive actions") + (description + "The package provides commands to simplify processing of sequential list-like +structures, such as making a series of similar commands from a list of names.") + (license license:lppl1.2+))) + ;;; ;;; 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