me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-regcount.

* gnu/packages/tex.scm (texlive-regcount): New variable.
master
Nicolas Goaziou 2023-08-29 15:59:39 +02:00
parent 05b2c22ffb
commit 86d697de36
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 22 additions and 0 deletions

View File

@ -93832,6 +93832,28 @@ style) for writing technical reference manuals. It offers a wide left margin
for notes to the reader, like some of the manuals distributed by Adobe.") for notes to the reader, like some of the manuals distributed by Adobe.")
(license license:lppl))) (license license:lppl)))
(define-public texlive-regcount
(package
(name "texlive-regcount")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/regcount/"
"source/latex/regcount/"
"tex/latex/regcount/")
(base32
"1iyc21qs4y5cf1xbqz6h7hpv5w2aplb5xlczzkva23n562gg3gf7")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/regcount")
(synopsis "Display the allocation status of the TeX registers")
(description
"The package adds a macro @code{\\rgcounts} which displays the allocation
status of the TeX registers. The display is written into the @file{.log} file
as it is a bit verbose. An automatic call to @code{\\rgcounts} is done at
@code{\\begin@{document@}} and @code{\\end@{document@}}.")
(license license:lppl)))
;;; ;;;
;;; 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