From 13f06f1ae702ff94d844e27defa060b808c66dc4 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:49:19 +0200 Subject: [PATCH] gnu: Add texlive-eqlist. * gnu/packages/tex.scm (texlive-eqlist): 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 18390fe8bb..4fa5708797 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -80753,6 +80753,25 @@ the student's effort on that quiz.") @samp{!}, @samp{?}, @samp{!?} or @samp{?!}.") (license license:gpl3+))) +(define-public texlive-eqlist + (package + (name "texlive-eqlist") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/eqlist/" "source/latex/eqlist/" + "tex/latex/eqlist/") + (base32 + "13gsz9ixw55mq2i43d80pn967jl3j86l5gkarzqliwc5ni6yn71c"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/eqlist") + (synopsis "@code{description} lists with equal indentation") + (description + "This package provides a list environment which sets a @code{description}-like +list in which the indentation corresponds to the longest item of the list.") + (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