From d601f80d25aaa017c3e78e0fd7a669be0e57ace8 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 13 Jul 2023 09:14:16 +0200 Subject: [PATCH] gnu: Add texlive-pgf-pie. * gnu/packages/tex.scm (texlive-pgf-pie): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5985548fd4..2618bb06b8 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3062,6 +3062,25 @@ table with a variety of options and displaying the desired data for all the 118 elements.") (license license:lppl1.3+))) +(define-public texlive-pgf-pie + (package + (name "texlive-pgf-pie") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pgf-pie/" "tex/latex/pgf-pie/") + (base32 + "1nvg61v9pzc0mqs8m818ixi8rmw2wv3h7s17shjc7mcdqkp7k1qq"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-carlisle texlive-latex texlive-pgf)) + (home-page "https://ctan.org/pkg/pgf-pie") + (synopsis "Draw pie charts, using PGF") + (description + "The package provides the means to draw pie (and variant) charts, +using PGF/TikZ.") + (license (list license:gpl2 license:lppl1.3c)))) + (define-public texlive-amiri (package (name "texlive-amiri")