guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

292/452: gnu: texlive-enumitem: Refresh package definition.


From: guix-commits
Subject: 292/452: gnu: texlive-enumitem: Refresh package definition.
Date: Fri, 9 Jun 2023 13:43:44 -0400 (EDT)

ngz pushed a commit to branch tex-team-next
in repository guix.

commit a4564b7e2d1365cc50a7f406e8c81ced254afa05
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue May 16 15:12:43 2023 +0200

    gnu: texlive-enumitem: Refresh package definition.
    
    * gnu/packages/tex.scm (texlive-enumitem): Remove SIMPLE-TEXLIVE-PACKAGE
    call.
    [license]: Set to EXPAT.
---
 gnu/packages/tex.scm | 34 +++++++++++++++++++---------------
 1 file changed, 19 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 4e2b0befe6..00ae907a69 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -7648,21 +7648,25 @@ the section, chapter or document.")
 
 (define-public texlive-enumitem
   (package
-    (inherit
-     (simple-texlive-package
-      "texlive-enumitem"
-      (list "doc/latex/enumitem/" "tex/latex/enumitem/")
-      (base32 "0qwbyjb4a82qjxrfmz06v3w5vly75id4ix4sw7lz2az68kz080dv")
-      #:trivial? #t))
-    (home-page "https://www.ctan.org/pkg/enumitem";)
-    (synopsis "Customize basic list environments")
-    (description
-     "This package is intended to ease customizing the three basic list
-environments: @code{enumerate}, @code{itemize} and @code{description}.  It
-extends their syntax to allow an optional argument where a set of parameters
-in the form @code{key=value} are available, for example:
-@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}.")
-    (license license:lppl1.3+)))
+    (name "texlive-enumitem")
+    (version (number->string %texlive-revision))
+    (source (texlive-origin
+             name version
+             (list "doc/latex/enumitem/" "tex/latex/enumitem/")
+             (base32
+              "0qwbyjb4a82qjxrfmz06v3w5vly75id4ix4sw7lz2az68kz080dv")))
+    (outputs '("out" "doc"))
+    (build-system texlive-build-system)
+    (home-page "https://ctan.org/pkg/enumitem";)
+    (synopsis "Control layout of itemize, enumerate, description")
+    (description
+     "This package provides user control over the layout of the three basic
+list environments: enumerate, itemize and description.  It supersedes both
+@code{enumerate} and @code{mdwlist} (providing well-structured replacements
+for all their functionality), and in addition provides functions to compute
+the layout of labels, and to clone the standard environments, to create new
+environments with counters of their own.")
+    (license license:expat)))
 
 (define-deprecated-package texlive-latex-enumitem texlive-enumitem)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]