diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-09 09:18:18 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:13:00 +0200 |
commit | 95c473ad8b88235da459873791d6243b9f5a7ef6 (patch) | |
tree | d3ed397622251d24d8958e492e0d92fb146c27c3 | |
parent | ba03db6809135fa7eec33cca9a8a05c82b5d654b (diff) | |
download | guix-95c473ad8b88235da459873791d6243b9f5a7ef6.tar.gz |
gnu: Add texlive-pspicture.
* gnu/packages/tex.scm (texlive-pspicture): 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 9f9a8628ae..b10aba3b4b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12154,6 +12154,27 @@ free fixed-width available now, than there were when @code{pslatex} was designed). As a result, @code{pslatex} is widely considered obsolete.") (license license:lppl))) +(define-public texlive-pspicture + (package + (name "texlive-pspicture") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pspicture/" "dvips/pspicture/" + "source/latex/pspicture/" + "tex/latex/pspicture/") + (base32 + "06wlnwyn45873zghnbw16lzmfj98r9il218z84p1ixw6jwkwlkh8"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pspicture") + (synopsis "PostScript picture support") + (description + "This package provides a replacement for LaTeX's picture macros, that +uses PostScript @code{\\special} commands. The package is now largely +superseded by @code{pict2e}.") + (license license:lppl))) + (define-public texlive-datetime2 (package (name "texlive-datetime2") |