diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 20:15:50 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 11:22:55 +0200 |
commit | d30f5d925804af347b70b632fabb21d46636e8d6 (patch) | |
tree | a059f36ad9650496798dcfd8ccc56c0b79247309 | |
parent | 29c2f51375b35df008343a82fd9b98cc59f26544 (diff) | |
download | guix-d30f5d925804af347b70b632fabb21d46636e8d6.tar.gz guix-d30f5d925804af347b70b632fabb21d46636e8d6.zip |
gnu: Add texlive-zhlipsum.
* gnu/packages/tex.scm (texlive-zhlipsum): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b9019442b2..fdeb52bfe8 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -15393,6 +15393,28 @@ and the footnote text. For CJK typesetting, these ratios usually range from that of the Latin text (usually 1.2 times the font size).") (license license:lppl1.3c))) +(define-public texlive-zhlipsum + (package + (name "texlive-zhlipsum") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/zhlipsum/" + "source/latex/zhlipsum/" + "tex/latex/zhlipsum/") + (base32 + "1lhc3a8l5sizyw0v1cfsrwwwymmyab1yvx99iqhdh7avrzmi2gda"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (native-inputs (list texlive-ctex)) + (home-page "https://ctan.org/pkg/zhlipsum") + (synopsis "Chinese dummy text") + (description + "This package provides an interface to dummy text in Chinese language, +which will be useful for testing Chinese documents. UTF-8, GBK and Big5 +encodings are supported.") + (license license:lppl1.3c))) + (define-public texlive-zztex (package (name "texlive-zztex") |