diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 15:07:17 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 15:45:51 +0200 |
commit | 98076e197f5de67858edd3fe3550f5f30bce5535 (patch) | |
tree | 2aeba0f1caa8c13dd49ef5199fb5a5f76621353d | |
parent | 6aad0085becd2c051f1fa4cd982bc05dd6ca1e34 (diff) | |
download | guix-98076e197f5de67858edd3fe3550f5f30bce5535.tar.gz |
gnu: Add texlive-chess-problem-diagrams.
* gnu/packages/tex.scm (texlive-chess-problem-diagrams): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f2a9298e0c..f3c5c72f0b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4216,6 +4216,27 @@ notation support), @code{texmate} (for alternative notation support), or @code{chessfss} (for flexible font choices).") (license license:public-domain))) +(define-public texlive-chess-problem-diagrams + (package + (name "texlive-chess-problem-diagrams") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/chess-problem-diagrams/" + "source/latex/chess-problem-diagrams/" + "tex/latex/chess-problem-diagrams/") + (base32 + "0m32dhwdfrgy1r3lq8j7hdaa79kniwwq3lanbkkn32dhybwa0b61"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/chess-problem-diagrams") + (synopsis "Package for typesetting chess problem diagrams") + (description + "This package provides macros to typeset chess problem diagrams including +fairy chess problems (mostly using rotated images of pieces) and other +boards.") + (license license:lppl1.2+))) + (define-public texlive-chhaya (package (name "texlive-chhaya") |