From b00bf4251d2d7b955bf83fbcd9a134d6e92e265e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:56:30 +0200 Subject: [PATCH] gnu: Add texlive-newenviron. * gnu/packages/tex.scm (texlive-newenviron): New variable. --- gnu/packages/tex.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d059aa239a..bc25378834 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -89995,6 +89995,24 @@ LaTeX, is tedious. This script allows the specification of commands in a natural style; the script then generates macros to define the command.") (license license:lppl))) +(define-public texlive-newenviron + (package + (name "texlive-newenviron") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/newenviron/" + "tex/latex/newenviron/") + (base32 + "193qxw4mck3sngjf1p63c65sbysji15j3hbvq0mbmg6xrjw2im7j"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/newenviron") + (synopsis "Processing an environment's body") + (description + "The package offers tools for collecting and executing an environment's body.") + (license license:lppl1.3+))) + ;;; ;;; 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