diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 14:56:22 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:23 +0200 |
commit | 9460219a1ae215506fc993d2313a315baeb9b789 (patch) | |
tree | 0fa186aa2ccdda96b474a0aac4d3d6fcb6263686 /gnu | |
parent | f487b57a182617b173ae2e821e67c11f202bad60 (diff) | |
download | guix-9460219a1ae215506fc993d2313a315baeb9b789.tar.gz guix-9460219a1ae215506fc993d2313a315baeb9b789.zip |
gnu: Add texlive-lualatex-truncate.
* gnu/packages/tex.scm (texlive-lualatex-truncate): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9582563406..576d2dc7b3 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16579,6 +16579,26 @@ the document gathers information from several sources, and offers links to others.") (license license:fdl1.3+))) +(define-public texlive-lualatex-truncate + (package + (name "texlive-lualatex-truncate") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/lualatex-truncate/" + "source/lualatex/lualatex-truncate/" + "tex/lualatex/lualatex-truncate/") + (base32 + "1ash4zy97qr9vl3j0gpf16srhi8ymfz3h9khlp59kyq9c921rcla"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/lualatex-truncate") + (synopsis "Wrapper for using the @code{truncate} package with LuaLaTeX") + (description + "This package provides a wrapper for the @code{truncate} package, thus +fixing issues related to LuaTeX's hyphenation algorithm.") + (license license:lppl1.3c))) + (define-public texlive-babel-czech (package (name "texlive-babel-czech") |