me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-xargs.

* gnu/packages/tex.scm (texlive-xargs): New variable.
master
Nicolas Goaziou 2023-08-29 16:05:00 +02:00
parent 536bb5d67e
commit 84cb690281
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 30 additions and 0 deletions

View File

@ -99967,6 +99967,36 @@ concepts of namespace and scope. It also allows users to customize reference
formats.")
(license license:expat)))
(define-public texlive-xargs
(package
(name "texlive-xargs")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/xargs/" "source/latex/xargs/"
"tex/latex/xargs/")
(base32
"1gbdnc1k819fncvnhzihx9q6qdxsrkpfjy47dh70bdwqf5klhqbh")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(arguments (list #:tex-format "latex"))
(native-inputs
(list (texlive-updmap.cfg
(list texlive-etoolbox
texlive-hypdoc
texlive-lm
texlive-microtype
texlive-minitoc
texlive-mparhack
texlive-xkeyval))))
(home-page "https://ctan.org/pkg/xargs")
(synopsis "Define commands with many optional arguments")
(description
"The package provides extended versions of @code{\\newcommand} and related
LaTeX commands, which allow easy and robust definition of macros with many
optional arguments, using a clear and simple @code{xkeyval}-style syntax.")
(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