diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 10:58:47 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:18:13 +0200 |
commit | 71c2a9ae703fce4650b10af8b7d93d58589af7cb (patch) | |
tree | e3957449dec7a846a6e489fe3732430b23746c9d /gnu | |
parent | c9e021cd16098090ac245f5851127f975f4fc290 (diff) | |
download | guix-71c2a9ae703fce4650b10af8b7d93d58589af7cb.tar.gz guix-71c2a9ae703fce4650b10af8b7d93d58589af7cb.zip |
gnu: Add texlive-wheelchart.
* gnu/packages/tex.scm (texlive-wheelchart): 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 4e02b1f6ae..4e92807729 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5697,6 +5697,26 @@ diagrams for lectures or assignment sheets.") per command or per parameter.") (license license:gpl3+))) +(define-public texlive-wheelchart + (package + (name "texlive-wheelchart") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/wheelchart/" + "tex/latex/wheelchart/") + (base32 + "0p1fw6xxrf7s0k5pvll8iy66wxbvy2bw5372l3lxkbdzjjfxa46j"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/wheelchart") + (synopsis "Draw wheelcharts with TikZ") + (description + "This package is based on the package TikZ and can be used to draw +wheelcharts with TikZ. It provides several options to customize the +wheelcharts.") + (license license:lppl1.3c))) + (define-public texlive-amiri (package (name "texlive-amiri") |