diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 19:15:54 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 19:42:49 +0200 |
commit | 6cc0ebd344b506e5f68c47cb60488ee29110a440 (patch) | |
tree | 18f67e13987a47baf5971c772c67618d7b82ba09 | |
parent | 7b0a10fa05405a4bb38def87222773ada5f32d94 (diff) |
gnu: Add texlive-bidihl.
* gnu/packages/tex.scm (texlive-bidihl): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 6a144a8c24..50da8b0bc3 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2783,6 +2783,23 @@ complies with the @emph{Loccumer Richtlinien} (Locum guidelines). In addition, the Vulgate (Latin Bible) is supported.") (license license:lppl1.3+))) +(define-public texlive-bidihl + (package + (name "texlive-bidihl") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/xelatex/bidihl/" "tex/xelatex/bidihl/") + (base32 + "021q2qhfl2ww95nbp63p3j7lv9wjj5s9wvn2sj5zyj1pcw75l8ir"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/bidihl") + (synopsis "Experimental Bidi-aware text highlighting") + (description + "This package provides experimental Bidi-aware text highlighting.") + (license license:lppl1.3+))) + (define-public texlive-binomexp (package (name "texlive-binomexp") |