From 217eab49afa9114a4c08cc1a36bab433a2527d94 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 14 Aug 2023 10:14:05 +0200 Subject: [PATCH] gnu: Add texlive-pst-contourplot. * gnu/packages/tex.scm (texlive-pst-contourplot): New variable. --- gnu/packages/tex.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 2809ca4ac3..1155be8111 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -32683,6 +32683,29 @@ expressing a circuit.") and zigzag node connections.") (license license:lppl))) +(define-public texlive-pst-contourplot + (package + (name "texlive-pst-contourplot") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/pst-contourplot/" + "tex/generic/pst-contourplot/" + "tex/latex/pst-contourplot/") + (base32 + "00nqg59x1x3nh30cclqjdyyyjzinyl9czjfywznh68dzari1fvqk"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pst-contourplot") + (synopsis + "Draw implicit functions using the marching squares algorithm") + (description + "This package allows to draw implicit functions @samp{f(x,y) = 0} with +options for coloring the inside of the surfaces, for marking the points and +arrowing the curve at points chosen by the user. The package uses the +marching squares algorithm.") + (license license:lppl))) + (define-public texlive-pst-text (package (name "texlive-pst-text")