ngz pushed a commit to branch master
in repository guix.
commit 43db1efd8c65f979286f702fa9a24781866f2e48
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Mon Aug 14 10:05:34 2023 +0200
gnu: Add texlive-luapstricks.
* gnu/packages/tex.scm (texlive-luapstricks): New variable.
---
gnu/packages/tex.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 3bbdcaee24..a351ab981c 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -39357,6 +39357,29 @@ to load external Lua modules, including modules
installed via LuaRocks.")
cells using LaTeX macros.")
(license license:expat)))
+(define-public texlive-luapstricks
+ (package
+ (name "texlive-luapstricks")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/lualatex/luapstricks/"
+ "fonts/opentype/public/luapstricks/"
+ "tex/lualatex/luapstricks/")
+ (base32
+ "160y66x93rcm0zpjscxyqbfkhbl0yypv0gyixm6vjwcm50vi2w5k")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (home-page "https://ctan.org/pkg/luapstricks")
+ (synopsis "PSTricks backend for LuaLaTeX")
+ (description
+ "This package enables the use of PSTricks directly in LuaLaTeX documents,
+without invoking external programmes, by implementing a PostScript interpreter
+in Lua. Therefore it does not require shell escape to be enabled or special
+environments, and instead allows PSTricks to be used exactly like in Dvips
+based documents.")
+ (license license:lppl1.3+)))
+
(define-public texlive-luaquotes
(package
(name "texlive-luaquotes")