diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 10:32:42 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 11:00:44 +0200 |
commit | bb3e507c95bdea503f8d8888d2e1b2f183851292 (patch) | |
tree | d0b87743079a83cca17afdc62cefc841c47852b4 /gnu | |
parent | fe2e1f29b4c2eef5ebb38eb8d49395d3eec09aab (diff) | |
download | guix-bb3e507c95bdea503f8d8888d2e1b2f183851292.tar guix-bb3e507c95bdea503f8d8888d2e1b2f183851292.tar.gz |
gnu: Add texlive-pst-shell.
* gnu/packages/tex.scm (texlive-pst-shell): New variable.
Diffstat (limited to 'gnu')
-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 eb0dac6f12..7734d212fb 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -33925,6 +33925,29 @@ inner surface of the ribbon may be set. In the case of circular and conical helices, one may also choose the number of ribbons.") (license license:lppl))) +(define-public texlive-pst-shell + (package + (name "texlive-pst-shell") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/pst-shell/" "dvips/pst-shell/" + "source/generic/pst-shell/" + "tex/generic/pst-shell/" + "tex/latex/pst-shell/") + (base32 + "18w5csarnjv3ws554vjw2zlmpc5mcd03fc8fircv0pbxxl53l11r"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pst-shell") + (synopsis "Plotting sea shells") + (description + "@code{pst-shell} is a PSTricks related package to draw seashells in 3D +view: Argonauta, Epiteonium, Lyria, Turritella, Tonna, Achatina, Oxystele, +Conus, Ammonite, Codakia, Escalaria, Helcion, Natalina, Planorbis, and +Nautilus, all with different parameters.") + (license license:lppl))) + (define-public texlive-pst-text (package (name "texlive-pst-text") |