gnu: Add texlive-enumitem.
* gnu/packages/tex.scm (texlive-enumitem): New variable. (texlive-latex-enumitem): Deprecate package.
This commit is contained in:
parent
1eedbae8b4
commit
ff37d7564b
1 changed files with 7 additions and 25 deletions
|
@ -6109,32 +6109,14 @@ splines, and filled circles and ellipses. The package uses @code{tpic}
|
||||||
@code{\\special} commands.")
|
@code{\\special} commands.")
|
||||||
(license license:public-domain)))
|
(license license:public-domain)))
|
||||||
|
|
||||||
(define-public texlive-latex-enumitem
|
(define-public texlive-enumitem
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-enumitem")
|
(inherit
|
||||||
(version (number->string %texlive-revision))
|
(simple-texlive-package
|
||||||
(source (origin
|
"texlive-enumitem"
|
||||||
(method svn-fetch)
|
(list "doc/latex/enumitem/" "tex/latex/enumitem/")
|
||||||
(uri (svn-reference
|
(base32 "0qwbyjb4a82qjxrfmz06v3w5vly75id4ix4sw7lz2az68kz080dv")
|
||||||
(url (string-append "svn://www.tug.org/texlive/tags/"
|
#:trivial? #t))
|
||||||
%texlive-tag "/Master/texmf-dist/"
|
|
||||||
"/tex/latex/enumitem"))
|
|
||||||
(revision %texlive-revision)))
|
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1j8svflnx9w897mdavyf1f0n256wh4bbclrhv5vx7b501gmlbp7d"))))
|
|
||||||
(build-system trivial-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:modules ((guix build utils))
|
|
||||||
#:builder
|
|
||||||
(begin
|
|
||||||
(use-modules (guix build utils))
|
|
||||||
(let ((target (string-append (assoc-ref %outputs "out")
|
|
||||||
"/share/texmf-dist/tex/latex/enumitem")))
|
|
||||||
(mkdir-p target)
|
|
||||||
(copy-recursively (assoc-ref %build-inputs "source") target)
|
|
||||||
#t))))
|
|
||||||
(home-page "https://www.ctan.org/pkg/enumitem")
|
(home-page "https://www.ctan.org/pkg/enumitem")
|
||||||
(synopsis "Customize basic list environments")
|
(synopsis "Customize basic list environments")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue