diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 14:57:33 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:25 +0200 |
commit | f757ed3552e3d36f14c7e061c9df366b8650584a (patch) | |
tree | 4e5a4902806baada492a19bd8560055ade1f8275 /gnu/packages | |
parent | 6c51d9ec0122ce4543fb602f93406dc867d9b7a9 (diff) | |
download | guix-f757ed3552e3d36f14c7e061c9df366b8650584a.tar.gz |
gnu: Add texlive-luamplib.
* gnu/packages/tex.scm (texlive-luamplib): New variable.
Diffstat (limited to 'gnu/packages')
-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 96477ff6c7..4b44369ec9 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16695,6 +16695,28 @@ be used with the @code{booktabs} package, which provides nice formatting of tables in LaTeX.") (license license:lppl1.3c))) +(define-public texlive-luamplib + (package + (name "texlive-luamplib") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/luatex/luamplib/" + "source/luatex/luamplib/" + "tex/luatex/luamplib/") + (base32 + "1f2r93daddjwmj7fcy5rds2yz0c8qmww7yw93vgwffmm49d9ims5"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/luamplib") + (synopsis "Use LuaTeX's built-in MetaPost interpreter") + (description + "The package enables the user to specify MetaPost diagrams (which may +include colour specifications from the color or xcolor packages) into +a document, using LuaTeX's built-in MetaPost library. The facility is only +available in PDF mode.") + (license license:gpl2))) + (define-public texlive-babel-czech (package (name "texlive-babel-czech") |