me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-coollist.

* gnu/packages/tex.scm (texlive-coollist): New variable.
master
Nicolas Goaziou 2023-08-29 15:46:45 +02:00
parent f625432aff
commit 72579b9f50
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 24 additions and 0 deletions

View File

@ -77145,6 +77145,30 @@ code) is greatly simplified.")
hanging indents to make them look nicer.") hanging indents to make them look nicer.")
(license license:lppl1.3c))) (license license:lppl1.3c)))
(define-public texlive-coollist
(package
(name "texlive-coollist")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/coollist/"
"source/latex/coollist/"
"tex/latex/coollist/")
(base32
"19ldgvcfwf24qzp3nv28lx13i6mz6qfiawirg1cn18nlaaig64ss")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/coollist")
(synopsis "Manipulate COntent Oriented LaTeX Lists")
(description
"Lists are defined as a sequence of tokens separated by a comma.
The @code{coollist} package allows the user to access certain elements of the
list while neglecting others --- essentially turning lists into a sort of
array. List elements are accessed by specifying the position of the object
within the list (the index of the item).")
;; "This package is released under the GNU LGPL." Assume latest.
(license license:lgpl3+)))
;;; ;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; 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 ;;; of a merge conflict, place them above by existing packages with similar