diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 10:15:26 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 11:00:33 +0200 |
commit | 00fe4eff5c5ad3b269ba575e8139316d937fbeea (patch) | |
tree | cb3735e05002d279dac1b7028cf8bc547e79f329 /gnu/packages/tex.scm | |
parent | 92c776ce7fcfe7e48437d01f04e48383ab4a4d0b (diff) | |
download | guix-00fe4eff5c5ad3b269ba575e8139316d937fbeea.tar guix-00fe4eff5c5ad3b269ba575e8139316d937fbeea.tar.gz |
gnu: Add texlive-pst-electricfield.
* gnu/packages/tex.scm (texlive-pst-electricfield): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5c85abff0d..a09ce086ee 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -32807,6 +32807,29 @@ Moreover one can choose the wavelength of the light (the associated color will be calculated by the package).") (license license:lppl))) +(define-public texlive-pst-electricfield + (package + (name "texlive-pst-electricfield") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/pst-electricfield/" + "dvips/pst-electricfield/" + "source/generic/pst-electricfield/" + "tex/generic/pst-electricfield/" + "tex/latex/pst-electricfield/") + (base32 + "1awc5nqp7giqmczx1xd1y78j5vgsw7y8m767mbhgs5j12j3yl4yd"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pst-electricfield") + (synopsis "Draw electric field and equipotential lines with PSTricks") + (description + "The package provides macros to plot electric field and equipotential +lines using PStricks. There may be any number of charges which can be placed +in a cartesian coordinate system.") + (license license:lppl))) + (define-public texlive-pst-text (package (name "texlive-pst-text") |