diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 19:46:40 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 11:22:51 +0200 |
commit | 86a47404fb2833481b41c7328544561ce83320b3 (patch) | |
tree | 81e044885b5c93aeffb5ae94c05b923a23ae09d3 /gnu/packages/tex.scm | |
parent | d1f6709a2722eb6f8a3441eb982e828054b7ddef (diff) | |
download | guix-86a47404fb2833481b41c7328544561ce83320b3.tar guix-86a47404fb2833481b41c7328544561ce83320b3.tar.gz |
gnu: Add texlive-asymptote-manual-zh-cn.
* gnu/packages/tex.scm (texlive-asymptote-manual-zh-cn): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-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 22dcbb5d42..07052c0e82 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2425,6 +2425,24 @@ Chinese.") (description "This is a Chinese translation of the Asymptote FAQ.") (license license:lppl))) +(define-public texlive-asymptote-manual-zh-cn + (package + (name "texlive-asymptote-manual-zh-cn") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/support/asymptote-manual-zh-cn/") + (base32 + "047l3bh8vvk185wkazyfw4dm6893xpa2ksn5vfc57r5rv4x16wmb"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/asymptote-manual-zh-cn") + (synopsis "Chinese translation of the Asymptote manual") + (description + "This is an (incomplete, simplified) Chinese translation of the Asymptote +manual.") + (license license:lgpl3+))) + (define-public texlive-auto-pst-pdf (package (name "texlive-auto-pst-pdf") |