diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 15:00:05 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:28 +0200 |
commit | c1449c68a2ebc4112260af4986926060ed1be9a2 (patch) | |
tree | 9e0bd4c2dbcdf208bf849df4d5997cdb800468cf | |
parent | 6a7cf8060cb55386049f4e432910d5b1dba03bc3 (diff) |
gnu: Add texlive-luatruthtable.
* gnu/packages/tex.scm (texlive-luatruthtable): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d35d641122..5181411310 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16888,6 +16888,29 @@ with LuaTeX. It loads packages @code{fontspec}, @code{luatexbase} and @code{lualibs}, and provides additional user-level features and goodies.") (license license:public-domain))) +(define-public texlive-luatruthtable + (package + (name "texlive-luatruthtable") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/luatruthtable/" + "tex/lualatex/luatruthtable/") + (base32 + "18k0zk9zxfprcjxzkmfb2j1lk4ldk5hxi0ch1sy0n29f06qcl740"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/luatruthtable") + (synopsis "Generate truth tables of boolean values in LuaLaTeX") + (description + "This package provides an easy way for generating truth tables of boolean +values in LuaLaTeX. The time required for operations is no issue while +compiling with LuaLaTeX. The package supports nesting of commands for multiple +operations. It can be modified or extended by writing custom lua programs. +There is no need to install lua on users system as TeX distributions (TeX Live +or MikTeX) come bundled with LuaLaTeX.") + (license license:lppl1.3c))) + (define-public texlive-babel-czech (package (name "texlive-babel-czech") |