diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 14:37:09 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:16 +0200 |
commit | 59b33cbe062cf774582871038f7bec7e9c7bd703 (patch) | |
tree | c9dac807b60b62c9fc166c4f864551e0d59438e8 /gnu | |
parent | 65064b0013506580251f67ca1faaf9a789755422 (diff) | |
download | guix-59b33cbe062cf774582871038f7bec7e9c7bd703.tar.gz |
gnu: Add texlive-ligtype.
* gnu/packages/tex.scm (texlive-ligtype): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8c17fc7e73..63f7f79c5a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16054,6 +16054,29 @@ Lehmann's @code{etoolbox}.") package to tables created using the @code{longtable} package.") (license license:lppl1.3+))) +(define-public texlive-ligtype + (package + (name "texlive-ligtype") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/ligtype/" + "tex/lualatex/ligtype/") + (base32 + "18m4j01zhp3kj2ixd53b9z0k5f6idbpr6jv45gw149j5niax1dxg"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ligtype") + (synopsis "Comprehensive ligature suppression functionalities") + (description + "This package suppresses inappropriate ligatures following specified +rules. Both font and user kerning are applied correctly, and f-glyphs are +automatically replaced with their short-arm variant (if available). Also +there is an emphasis on speed. By default the package applies German language +ligature suppression rules. With the help of options and macros it can be +used for other languages as well. The package requires LuaLaTeX.") + (license license:lppl1.3c))) + (define-public texlive-lineno (package (name "texlive-lineno") |