diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 09:22:24 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:38 +0200 |
commit | 07b554e2ffbd454f05a7ddd1997bfce111fc96cf (patch) | |
tree | 1f4536d9f4dd762ffbb9eeb98524724a962d2a73 | |
parent | 453c307e2fa0c1d31f2ea6a4e4af0bd3dd655bee (diff) | |
download | guix-07b554e2ffbd454f05a7ddd1997bfce111fc96cf.tar.gz guix-07b554e2ffbd454f05a7ddd1997bfce111fc96cf.zip |
gnu: Add texlive-puyotikz.
* gnu/packages/tex.scm (texlive-puyotikz): New variable.
-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 73a8c6e14b..9c7539d665 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3535,6 +3535,26 @@ of this package. The macros provided in this package aid in the construction of sphere model diagrams in the style of Lewis.") (license license:lppl1.3c))) +(define-public texlive-puyotikz + (package + (name "texlive-puyotikz") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/puyotikz/" "scripts/puyotikz/" + "tex/latex/puyotikz/") + (base32 + "15vw485phk523kby1q1wn0s0f7185cqj7sjsr8hc6iccdbzwknc0"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/puyotikz") + (synopsis "Quickly typeset board states of Puyo Puyo games") + (description + "This LaTeX package permits to quickly typeset board states of Puyo Puyo +games. It supports large and small boards with arbitrary shape, hidden rows, +current and next puyos, labels and move planning markers.") + (license license:expat))) + (define-public texlive-amiri (package (name "texlive-amiri") |