diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 14:54:53 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:22 +0200 |
commit | aeff82b87d5861c3da1b92abf2c74c30d25f8bf0 (patch) | |
tree | ca9e83cdc5af145f4b16d4a94f0dd0a0aa87804c /gnu | |
parent | 940d00adda7cd28ab4600d6d5e29f1477ee91d18 (diff) | |
download | guix-aeff82b87d5861c3da1b92abf2c74c30d25f8bf0.tar.gz guix-aeff82b87d5861c3da1b92abf2c74c30d25f8bf0.zip |
gnu: Add texlive-luaintro.
* gnu/packages/tex.scm (texlive-luaintro): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 19ece13c73..6fccd4f8ef 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16520,6 +16520,25 @@ a current LuaTeX,the package has the same behaviour with LuaTeX as @code{inputenc} has under pdfTeX.") (license license:public-domain))) +(define-public texlive-luaintro + (package + (name "texlive-luaintro") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/luatex/luaintro/") + (base32 + "0xab7yymknvhsh4c30xnhrlvk798mbnl9fbf7njqx8mbmnv869bi"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/luaintro") + (synopsis "Examples from the book ``Einfuhrung in LuaTeX und LuaLaTeX''") + (description + "The bundle provides source of all the examples published in the German +book ``Einfuhrung in LuaTeX und LuaLaTeX'', published by Lehmans Media and +DANTE, Berlin.") + (license license:lppl1.3+))) + (define-public texlive-babel-czech (package (name "texlive-babel-czech") |