me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-makerobust.

* gnu/packages/tex.scm (texlive-makerobust): New variable.
master
Nicolas Goaziou 2023-08-29 15:55:04 +02:00
parent 97f3272a24
commit 0a87621598
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 25 additions and 0 deletions

View File

@ -88191,6 +88191,31 @@ Currently there are (almost) no configuration features for
loading @file{makelabels.lco} to get various configuration features.")
(license license:lppl1.3c)))
(define-public texlive-makerobust
(package
(name "texlive-makerobust")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/makerobust/"
"tex/latex/makerobust/")
(base32
"1a5360vda131jh1qvwarbqc9riwksxjrzamqkcf3a2zg1ps13w59")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/makerobust")
(synopsis "Making a macro robust (legacy package)")
(description
"Heiko Oberdiek's @code{makerobust} package defined a command with name
@code{\\MakeRobustCommand} that could be used to make fragile commands robust.
The LaTeX format has, since 2015, included a command @code{\\MakeRobust} with
the same syntax and behaviour. Also by 2019, almost all commands in LaTeX
that may be used in a moving argument are already robust. This package is now
just a simple one-liner defining the name @code{\\MakeRobustCommand} as an
alias for @code{\\MakeRobust}. This package should not be used in any new
documents.")
(license license:lppl1.3c)))
;;;
;;; 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