mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 01:11:55 -05:00
gnu: texlive-enumitem: Refresh package definition.
* gnu/packages/tex.scm (texlive-enumitem): Remove SIMPLE-TEXLIVE-PACKAGE call. [license]: Set to EXPAT.
This commit is contained in:
parent
5c8441a996
commit
f278a1f716
1 changed files with 18 additions and 14 deletions
|
@ -7648,21 +7648,25 @@ (define-public texlive-endnotes
|
||||||
|
|
||||||
(define-public texlive-enumitem
|
(define-public texlive-enumitem
|
||||||
(package
|
(package
|
||||||
(inherit
|
(name "texlive-enumitem")
|
||||||
(simple-texlive-package
|
(version (number->string %texlive-revision))
|
||||||
"texlive-enumitem"
|
(source (texlive-origin
|
||||||
(list "doc/latex/enumitem/" "tex/latex/enumitem/")
|
name version
|
||||||
(base32 "0qwbyjb4a82qjxrfmz06v3w5vly75id4ix4sw7lz2az68kz080dv")
|
(list "doc/latex/enumitem/" "tex/latex/enumitem/")
|
||||||
#:trivial? #t))
|
(base32
|
||||||
(home-page "https://www.ctan.org/pkg/enumitem")
|
"0qwbyjb4a82qjxrfmz06v3w5vly75id4ix4sw7lz2az68kz080dv")))
|
||||||
(synopsis "Customize basic list environments")
|
(outputs '("out" "doc"))
|
||||||
|
(build-system texlive-build-system)
|
||||||
|
(home-page "https://ctan.org/pkg/enumitem")
|
||||||
|
(synopsis "Control layout of itemize, enumerate, description")
|
||||||
(description
|
(description
|
||||||
"This package is intended to ease customizing the three basic list
|
"This package provides user control over the layout of the three basic
|
||||||
environments: @code{enumerate}, @code{itemize} and @code{description}. It
|
list environments: enumerate, itemize and description. It supersedes both
|
||||||
extends their syntax to allow an optional argument where a set of parameters
|
@code{enumerate} and @code{mdwlist} (providing well-structured replacements
|
||||||
in the form @code{key=value} are available, for example:
|
for all their functionality), and in addition provides functions to compute
|
||||||
@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}.")
|
the layout of labels, and to clone the standard environments, to create new
|
||||||
(license license:lppl1.3+)))
|
environments with counters of their own.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-deprecated-package texlive-latex-enumitem texlive-enumitem)
|
(define-deprecated-package texlive-latex-enumitem texlive-enumitem)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue