diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 10:29:20 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 11:00:41 +0200 |
commit | 0e2823cc098d4c28d29557e52ca272e164ee6a2e (patch) | |
tree | e1050a5109e8dd211975c6317e4d3cf61ee92bf3 /gnu | |
parent | 7ead1d7350e5f7a01b6d7c0c7fed0d4f745a930f (diff) | |
download | guix-0e2823cc098d4c28d29557e52ca272e164ee6a2e.tar guix-0e2823cc098d4c28d29557e52ca272e164ee6a2e.tar.gz |
gnu: Add texlive-pst-optexp.
* gnu/packages/tex.scm (texlive-pst-optexp): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c8ee758aed..a677f22bf7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -33605,6 +33605,31 @@ processed by user-defined PostScript procedures. Optionally, the computed state vectors can be written as a table to a text file.") (license license:lppl))) +(define-public texlive-pst-optexp + (package + (name "texlive-pst-optexp") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pst-optexp/" "dvips/pst-optexp/" + "makeindex/pst-optexp/" + "source/latex/pst-optexp/" + "tex/latex/pst-optexp/") + (base32 + "0m835c700a6bxd8r8m84injzz862j1xdxbbh8waxh97yrfwmhp45"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pst-optexp") + (synopsis "Drawing optical experimental setups") + (description + "The package is a collection of optical components that facilitate easy +sketching of optical experimental setups. The package uses PSTricks for its +output. A wide range of free-ray and fibre components is provided, the +alignment, positioning and labelling of which can be achieved in very simple +and flexible ways. The components may be connected with fibers or beams, and +realistic raytraced beam paths are also possible.") + (license license:lppl1.3+))) + (define-public texlive-pst-text (package (name "texlive-pst-text") |