From 266f0ac9826d742f124578fbd09a92152e042a17 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:52:55 +0200 Subject: [PATCH] gnu: Add texlive-iitem. * gnu/packages/tex.scm (texlive-iitem): 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 a3fca867be..1aa4a6df56 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -85506,6 +85506,25 @@ the package's @code{\\ifthenelse} command. The package is complementary to loaded in the same document, as long as @code{xifthen} is loaded first.") (license license:lppl))) +(define-public texlive-iitem + (package + (name "texlive-iitem") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/iitem/" "source/latex/iitem/" + "tex/latex/iitem/") + (base32 + "1wizydpgy1xghwy18l0ywwi5r3mkiw8m37dafa8pg1k5rvffz4zq"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/iitem") + (synopsis "Multiple level of lists in one list-like environment") + (description + "The package defines multiple level lists within one list-like environment, +with the help of the @code{\\iitem}, @code{\\iiitem}, ... macros.") + (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