diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 19:46:26 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 11:22:51 +0200 |
commit | d1f6709a2722eb6f8a3441eb982e828054b7ddef (patch) | |
tree | 21e79b31c33d6173c28b5e008d070b08e580540e /gnu/packages/tex.scm | |
parent | 21f9d1a07209b34368c5c289796b7cc394ac0898 (diff) | |
download | guix-d1f6709a2722eb6f8a3441eb982e828054b7ddef.tar guix-d1f6709a2722eb6f8a3441eb982e828054b7ddef.tar.gz |
gnu: Add texlive-asymptote-faq-zh-cn.
* gnu/packages/tex.scm (texlive-asymptote-faq-zh-cn): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a0c3b1681e..22dcbb5d42 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2409,6 +2409,22 @@ converted between Plain TeX and LaTeX by a simple editing action.") Chinese.") (license license:gpl3+))) +(define-public texlive-asymptote-faq-zh-cn + (package + (name "texlive-asymptote-faq-zh-cn") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/support/asymptote-faq-zh-cn/") + (base32 + "0z09f5as68dz66dlj370xfx593bv50ihxx10zxmm9lk27ymr52hb"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/asymptote-faq-zh-cn") + (synopsis "Asymptote FAQ (Chinese translation)") + (description "This is a Chinese translation of the Asymptote FAQ.") + (license license:lppl))) + (define-public texlive-auto-pst-pdf (package (name "texlive-auto-pst-pdf") |