diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 19:52:13 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 11:22:52 +0200 |
commit | a26fb20d74f05b299f8183b13f886b3d04ff136f (patch) | |
tree | f916808f4d838c5b1b74e0a36166f0942d688285 /gnu | |
parent | 94a3602708273c9eca01870ffa77210dd7cd9c02 (diff) | |
download | guix-a26fb20d74f05b299f8183b13f886b3d04ff136f.tar guix-a26fb20d74f05b299f8183b13f886b3d04ff136f.tar.gz |
gnu: Add texlive-impatient-cn.
* gnu/packages/tex.scm (texlive-impatient-cn): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a96bb1fd61..ab444fe919 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6349,6 +6349,24 @@ when using for open intervals.") "@emph{TeX for the Impatient} is a book on TeX, Plain TeX and Eplain.") (license license:fdl1.3+))) +(define-public texlive-impatient-cn + (package + (name "texlive-impatient-cn") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/plain/impatient-cn/") + (base32 + "1pc20pb0las3slam1d9hmqigipmr6r98wwif12m33mm750vmq65i"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/impatient") + (synopsis "Chinese translation of @emph{TeX for the Impatient} book") + (description + "@emph{TeX for the Impatient} is a book (of around 350 pages) on TeX, +Plain TeX and Eplain. This is its Chinese translation.") + (license license:fdl1.3+))) + (define-public texlive-impatient-fr (package (name "texlive-impatient-fr") |