diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:05:19 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:07:38 +0200 |
commit | 2520362d52e0887479574f473d691f2c6327cbb8 (patch) | |
tree | 786145d8d0cb6a264dc065c38dc2bda82b1472b8 /gnu/packages | |
parent | adc8f7f7d190afdbe888ca1d74050a2107d9582d (diff) |
gnu: Add texlive-xoptarg.
* gnu/packages/tex.scm (texlive-xoptarg): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e5a2c3a20e..f0c9ad401a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -100357,6 +100357,25 @@ definitions, X-column specifier, and with possible pagebreaks.") @code{\\newcommand}.") (license license:lppl))) +(define-public texlive-xoptarg + (package + (name "texlive-xoptarg") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/xoptarg/" "tex/latex/xoptarg/") + (base32 + "13fifaq7c64rpqaaqj9zlq280ckmzdlqrs4p1gzs1h269p9z8mbf"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/xoptarg") + (synopsis "Expandable macros that take an optional argument") + (description + "Commands that take an optional argument are not ordinarily expandable; this +package allows such commands to be expandable provided that they have at least +one mandatory argument.") + (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 |