diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:05:22 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:07:40 +0200 |
commit | 339e10cf48878b90db7b5cbefc27601e61c654b4 (patch) | |
tree | 2ace0bf5f2fbdea395000c9e2bd1ef1849c121f0 /gnu/packages/tex.scm | |
parent | 74bcd164a4b0128057876221e84c7caed4272430 (diff) |
gnu: Add texlive-xprintlen.
* gnu/packages/tex.scm (texlive-xprintlen): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-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 a8499938fe..b50c7127f9 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -100442,6 +100442,25 @@ only if it is necessary.") follows them in the command stream and choose appropriate behaviour.") (license license:lppl1.3+))) +(define-public texlive-xprintlen + (package + (name "texlive-xprintlen") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/xprintlen/" + "tex/latex/xprintlen/") + (base32 + "0skz6y06wslzf0yb0g101g24kw6bkm9kl825swpqahyzdgwapxw4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/xprintlen") + (synopsis "Print TeX lengths in a variety of units") + (description + "The package defines a command, @code{\\printlen}, to print TeX lengths in +a variety of units. It can handle all units supported by TeX.") + (license license:lppl1.3+))) + ;;; ;;; 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 |