diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 10:31:29 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:49 +0200 |
commit | 48e6adaeb15a11ccda91b2e99506bece37cee792 (patch) | |
tree | 2a22d702a4ea588c9b38cada09fa6fe137206dd1 /gnu | |
parent | 3a5e5f53f13dc28e169d7ab6b89ea3b350bf3bdf (diff) | |
download | guix-48e6adaeb15a11ccda91b2e99506bece37cee792.tar.gz guix-48e6adaeb15a11ccda91b2e99506bece37cee792.zip |
gnu: Add texlive-tikz-bagua.
* gnu/packages/tex.scm (texlive-tikz-bagua): New variable.
Diffstat (limited to 'gnu')
-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 47f2cb1346..acc6653737 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4214,6 +4214,26 @@ and fill color can be expressed as parametric functions of polar angles.") Some interesting uses alongside other packages are also supported.") (license license:lppl1.3c))) +(define-public texlive-tikz-bagua + (package + (name "texlive-tikz-bagua") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tikz-bagua/" + "tex/latex/tikz-bagua/") + (base32 + "1kn0ggpxz5ksnnxsfhbhavik7n8mpblm9x3qjxcsg2qhs286lwyh"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tikz-bagua") + (synopsis "Draw Bagua symbols in Yijing") + (description + "This package provides commands for drawing symbols in Yijing (I Ching) +or Zhouyi using TikZ. There is no need for extra special fonts for showing +these symbols.") + (license license:lppl1.3c))) + (define-public texlive-amiri (package (name "texlive-amiri") |