diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 20:14:44 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 11:22:55 +0200 |
commit | f8f462922ee32fc8c62b41325c5dec9037dff7eb (patch) | |
tree | 7064d63141a34e685cffbd5e8af6dddfabe8912b | |
parent | ca39d6bd8522faab7b26eb654485a78636578f4a (diff) | |
download | guix-f8f462922ee32fc8c62b41325c5dec9037dff7eb.tar.gz guix-f8f462922ee32fc8c62b41325c5dec9037dff7eb.zip |
gnu: Add texlive-upzhkinsoku.
* gnu/packages/tex.scm (texlive-upzhkinsoku): New variable.
-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 ac42c1beb4..78a25312ec 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -15163,6 +15163,26 @@ original LaTeX with @code{\\inputenc@{utf8@}} and Babel (description "The bundle contains fonts (TFM and VF) for use with upTeX.") (license license:bsd-3))) +(define-public texlive-upzhkinsoku + (package + (name "texlive-upzhkinsoku") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/upzhkinsoku/" + "tex/generic/upzhkinsoku/") + (base32 + "0c95fy9raykpjgnkz5h0wyjxyg2h0ksx2kb14lx2rsv65xsi909y"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/upzhkinsoku") + (synopsis "Supplementary Chinese kinsoku for Unicode *pTeX") + (description + "This package provides supplementary Chinese kinsoku (line breaking rules +etc.)@: settings for Unicode (e-)upTeX (when using Unicode as its internal +encoding), and ApTeX. Both LaTeX and plain TeX are supported.") + (license license:knuth))) + (define-public texlive-variations (package (name "texlive-variations") |