mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: Add texlive-pstricks.
* gnu/packages/tex.scm (texlive-pstricks): New variable.
This commit is contained in:
parent
73ce44218b
commit
e5c081291e
1 changed files with 28 additions and 0 deletions
|
@ -7116,3 +7116,31 @@ (define-public texlive-ydoc
|
|||
not (yet) be used with other packages, since the implementation might
|
||||
change.")
|
||||
(license license:lppl1.3+))))
|
||||
|
||||
(define-public texlive-pstricks
|
||||
(let ((template (simple-texlive-package
|
||||
"texlive-pstricks"
|
||||
(list "/doc/generic/pstricks/"
|
||||
"/dvips/pstricks/"
|
||||
"/tex/generic/pstricks/"
|
||||
"/tex/latex/pstricks/")
|
||||
(base32
|
||||
"04566354c77claxl1sznc490cda0m5gaa5ck6ms4q7mm44rj3rzk")
|
||||
#:trivial? #t)))
|
||||
(package
|
||||
(inherit template)
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments template)
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(delete 'reset-gzip-timestamps)))))
|
||||
(home-page "http://www.ctan.org/pkg/pstricks")
|
||||
(synopsis "PostScript macros for TeX")
|
||||
(description "PSTricks offers an extensive collection of macros for
|
||||
generating PostScript that is usable with most TeX macro formats, including
|
||||
Plain TeX, LaTeX, AMS-TeX, and AMS-LaTeX. Included are macros for colour,
|
||||
graphics, pie charts, rotation, trees and overlays. It has many special
|
||||
features, including a wide variety of graphics (picture drawing) macros, with
|
||||
a flexible interface and with colour support. There are macros for colouring
|
||||
or shading the cells of tables.")
|
||||
(license license:lppl1.3+))))
|
||||
|
|
Loading…
Reference in a new issue