diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-12 22:22:30 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:09 +0200 |
commit | 256b5153f89f65c8993fda840908f423ea23aa34 (patch) | |
tree | 9e8043d72d1d1fdcc03622068edc860d720d785a /gnu/packages | |
parent | 8181a38d115e00b2217be904b78d9424956a16f7 (diff) | |
download | guix-256b5153f89f65c8993fda840908f423ea23aa34.tar.gz guix-256b5153f89f65c8993fda840908f423ea23aa34.zip |
gnu: Add texlive-dynkin-diagrams.
* gnu/packages/tex.scm (texlive-dynkin-diagrams): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9ccb202031..2a0c3e8967 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16915,6 +16915,25 @@ LaTeX documents. It consists of about eighty commands, calling on TikZ for support.") (license license:lppl1.3+))) +(define-public texlive-dynkin-diagrams + (package + (name "texlive-dynkin-diagrams") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/dynkin-diagrams/" + "tex/latex/dynkin-diagrams/") + (base32 + "0s2bf8l51ngpf9bg8vx8s4xa0dmdxj02h0hcyf23kh58xpxvmylh"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/dynkin-diagrams") + (synopsis "Draw Dynkin, Coxeter, and Satake diagrams using TikZ") + (description + "This is a drawing package for Dynkin, Coxeter, and Satake diagrams in +LaTeX documents, using the TikZ package.") + (license license:lppl1.3c))) + (define-public texlive-gates (package (name "texlive-gates") |