From bda6e99da28c2b98449be20d03a99266c5f6adca Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:03:09 +0200 Subject: gnu: Add texlive-textmerg. * gnu/packages/tex.scm (texlive-textmerg): New variable. --- gnu/packages/tex.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 49ea180852..f26585c0dd 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -97940,6 +97940,28 @@ (define-public texlive-textfit "This package fits text to a given width or height by scaling the font.") (license license:lppl1.3+))) +(define-public texlive-textmerg + (package + (name "texlive-textmerg") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/textmerg/" + "source/generic/textmerg/" + "tex/generic/textmerg/") + (base32 + "1fr34cr1r2f5g72acx33jx74lxgf37c2f2gyjw8frfljmw3fdqc2"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:tex-format "latex")) + (home-page "https://ctan.org/pkg/textmerg") + (synopsis "Merge text in TeX and LaTeX") + (description + "This package repetetively produce documents from a fixed part and a variable +part. Such an operation is commonly used as ``mail merge'' to produce mail +shots.") + (license license:public-domain))) + ;;; ;;; 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 -- cgit v1.2.3