diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 14:43:58 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:17 +0200 |
commit | 00acc32e49385dc0dbe7754fad21f1e0702a1afe (patch) | |
tree | 2016456b18cf38aba654dc1be2e0c5ae9aa9c131 | |
parent | 290a006aaa420283a41fd2df42b59196b2103bbc (diff) | |
download | guix-00acc32e49385dc0dbe7754fad21f1e0702a1afe.tar.gz guix-00acc32e49385dc0dbe7754fad21f1e0702a1afe.zip |
gnu: Add texlive-lt3luabridge.
* gnu/packages/tex.scm (texlive-lt3luabridge): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 1f6f209940..b2db9942c1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16141,6 +16141,27 @@ or ConTeXt, or even plain TeX. Of course, LuaTeX must always be used as the engine.") (license license:lppl1.3c))) +(define-public texlive-lt3luabridge + (package + (name "texlive-lt3luabridge") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/lt3luabridge/" + "source/generic/lt3luabridge/" + "tex/generic/lt3luabridge/") + (base32 + "00nfi3c545kmm6d9hxwl0m3pawg8322g36gm8sfa3y2p8kah6p8d"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/lt3luabridge") + (synopsis "Execute Lua code in any TeX engine that exposes the shell") + (description + "This is an expl3(-generic) package for plain TeX, LaTeX, and ConTeXt +that allows you to execute Lua code in LuaTeX or any other TeX engine that +exposes the shell.") + (license license:lppl1.3c))) + (define-public texlive-babel-czech (package (name "texlive-babel-czech") |