gnu: Add texlive-luajittex.

* gnu/packages/tex.scm (texlive-luajittex): New variable.
This commit is contained in:
Nicolas Goaziou 2023-07-16 17:17:35 +02:00
parent fa16e8fe36
commit bac5097052
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -2811,6 +2811,37 @@ (define-public texlive-ltximg
@code{\\includegraphics}.") @code{\\includegraphics}.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public texlive-luajittex
(package
(name "texlive-luajittex")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/man/man1/luajithbtex.1"
"doc/man/man1/luajithbtex.man1.pdf"
"doc/man/man1/luajittex.1"
"doc/man/man1/luajittex.man1.pdf")
(base32
"1qfbg0r6gsncgymh00yc83kcayd4m7bvryap8f63sm9s9bzfl6yv")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(arguments (list #:create-formats #~(list "luajithbtex" "luajittex")))
(propagated-inputs
(list texlive-cm
texlive-etex
texlive-hyphen-complete
texlive-knuth-lib
texlive-luatex
texlive-plain
texlive-tex-ini-files
texlive-unicode-data))
(home-page "https://ctan.org/pkg/luajittex")
(synopsis "LuaTeX with JIT compiler, with and without HarfBuzz")
(description
"This package provides LuaTeX with just-in-time (JIT) compiler, with and
without HarfBuzz.")
(license license:gpl2)))
(define-public texlive-tex-ini-files (define-public texlive-tex-ini-files
(package (package
(name "texlive-tex-ini-files") (name "texlive-tex-ini-files")