diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-20 11:07:16 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-20 11:17:46 +0200 |
commit | 073bd5b2aa43c74fe7518241736f36824eb07529 (patch) | |
tree | 89229f13bec47eb1a1da9e1f2f9eb898a74cdbb9 /gnu/packages | |
parent | 91c9b83fde3ad4f1abbf0cc7cc6223bf75274edb (diff) | |
download | guix-073bd5b2aa43c74fe7518241736f36824eb07529.tar.gz guix-073bd5b2aa43c74fe7518241736f36824eb07529.zip |
gnu: Add texlive-texdimens.
* gnu/packages/tex.scm (texlive-texdimens): 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 945276dec7..dd6469c0c9 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3842,6 +3842,25 @@ yearly) automatically, and can be easily localized for non-English languages.") (license license:lppl1.3c))) +(define-public texlive-texdimens + (package + (name "texlive-texdimens") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/texdimens/" + "tex/generic/texdimens/") + (base32 + "0l6raryqpxydis9kq6sd4pvz7d2rzrrsnx7k9n3d3921pp208lv4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/texdimens") + (synopsis "Conversion of TeX dimensions to decimals") + (description + "This package provides utilities and documentation related to TeX +dimensional units, usable both with Plain TeX and with LaTeX.") + (license license:lppl1.3c))) + (define-public texlive-lcdftypetools (package (name "texlive-lcdftypetools") |