diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 10:24:21 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 11:00:39 +0200 |
commit | 0b33a614bb5ac20bcf5d4b6e51974bb006e6f4d2 (patch) | |
tree | 482fa8a5b3f573014448013e3c1d51015d1d36ba | |
parent | 09dd2795b9df67e818f8833cc5e78152cee24e02 (diff) | |
download | guix-0b33a614bb5ac20bcf5d4b6e51974bb006e6f4d2.tar guix-0b33a614bb5ac20bcf5d4b6e51974bb006e6f4d2.tar.gz |
gnu: Add texlive-pst-mirror.
* gnu/packages/tex.scm (texlive-pst-mirror): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 798a9ccbd3..b1ba79b0c2 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -33494,6 +33494,27 @@ The package also provides a routine SIMPSON for numerical integration and a solver of linear equation systems.") (license license:lppl))) +(define-public texlive-pst-mirror + (package + (name "texlive-pst-mirror") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/pst-mirror/" + "dvips/pst-mirror/" + "tex/generic/pst-mirror/" + "tex/latex/pst-mirror/") + (base32 + "0b2q1islf9mwphzcs6g04vq69hlmyisx4rb5fb77yiw3na5xlnq0"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pst-mirror") + (synopsis "Images on a spherical mirror") + (description + "The package provides commands and supporting PostScript material for +drawing images as if reflected by a spherical mirror.") + (license license:lppl))) + (define-public texlive-pst-text (package (name "texlive-pst-text") |