From 4507c4c0dcf5a84355f09a78da827b67f09c7ab3 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:49:29 +0200 Subject: [PATCH] gnu: Add texlive-etaremune. * gnu/packages/tex.scm (texlive-etaremune): New variable. --- gnu/packages/tex.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 25f21bdd72..0188c8e7d1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -80983,6 +80983,38 @@ (define-public texlive-esint-type1 "This is Eddie Saudrais's font @code{esint10} in Adobe Type 1 format.") (license license:public-domain))) +(define-public texlive-etaremune + (package + (name "texlive-etaremune") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/etaremune/" + "source/latex/etaremune/" + "tex/latex/etaremune/") + (base32 + "12ljghlhh7li8pgpaa39gnsvvn4l4bmww74zik4q3qmirkhvi949"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:tex-format "latex")) + (native-inputs + (list (texlive-updmap.cfg + (list texlive-filecontents + texlive-footmisc + texlive-fourier + texlive-hypdoc + texlive-listings + texlive-xcolor + texlive-xkeyval)))) + (home-page "https://ctan.org/pkg/etaremune") + (synopsis "Reverse-counting @code{enumerate} environment") + (description + "The package implements the @code{etaremune} environment which is an +@code{enumerate} environment in which the labels decrease instead of +increasing. The package is noticeably more efficient than the @code{revnum} +package, which uses painfully many counters.") + (license license:lppl))) + ;;; ;;; 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