diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 15:04:42 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:30 +0200 |
commit | 60d0ee5a4fd630c3e4991d74c989b8d86e3fa41d (patch) | |
tree | 24c60dfd969ec2e2b1e711dca2df323304164075 | |
parent | aa2672a92d85cf1b3082684606c7c72a600a27e0 (diff) |
gnu: Add texlive-minim-mp.
* gnu/packages/tex.scm (texlive-minim-mp): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 6ea67fcdb5..5973502b2f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -17022,6 +17022,28 @@ are the proper settings and definitions for almost all Unicode mathematical characters.") (license license:eupl1.2))) +(define-public texlive-minim-mp + (package + (name "texlive-minim-mp") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/luatex/minim-mp/" "metapost/minim-mp/" + "tex/luatex/minim-mp/") + (base32 + "084k1ywvaq1mbz00kmbxd5kzp1da7a397dy3y25pbf7chrlxwsrk"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/minim-mp") + (synopsis "Low-level mplib integration for LuaTeX") + (description + "This package offers low-level mplib integration for plain LuaTeX and is +designed with the purpose of being easy to extend. The use of multiple +simultaneous MetaPost instances is supported, as well as running TeX or lua +code from within MetaPost. With the included @code{minim-mp} format file, you +can even use LuaTeX as a stand-alone MetaPost compiler.") + (license license:eupl1.2))) + (define-public texlive-babel-czech (package (name "texlive-babel-czech") |