diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-14 11:05:24 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:10:57 +0200 |
commit | c674958872bad20eda17bf800e2b31cddda07850 (patch) | |
tree | 903e24f30e08aced1209e3c251eed4fbc3466152 | |
parent | d4c175e015d6bf85785b5bdf8ead46905980de34 (diff) |
gnu: Add texlive-ctablestack.
* gnu/packages/tex.scm (texlive-ctablestack): 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 21d6fbf041..b5e52d95e6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1321,6 +1321,27 @@ support (for use with a variety of encodings) is provided.") ;; additional but not legally binding clause. (license license:lppl1.3c+))) +(define-public texlive-ctablestack + (package + (name "texlive-ctablestack") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/luatex/ctablestack/" + "source/luatex/ctablestack/" + "tex/luatex/ctablestack/") + (base32 + "13l779436aj3hlchwvhkpiikbyfa2j4swzfrwqkjh9l8bc2cwg7n"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ctablestack") + (synopsis "Catcode table stable support") + (description + "This package provides a method for defining category code table stacks +in LuaTeX. It is required by the @code{luatexbase} package which uses +@code{ctablestack} to provide a back-compatibility form of this concept.") + (license license:lppl1.3+))) + (define-public texlive-lm (package (inherit (simple-texlive-package |