gnu: Add texlive-mflua.

* gnu/packages/tex.scm (texlive-mflua): New variable.
This commit is contained in:
Nicolas Goaziou 2023-07-16 17:18:05 +02:00
parent 4f80269514
commit 8e560c3a81
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -2867,6 +2867,31 @@ (define-public texlive-match-parens
clearly show any mismatches.")
(license license:gpl3+)))
(define-public texlive-mflua
(package
(name "texlive-mflua")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "metafont/mflua/" "scripts/mflua/")
(base32
"0ngbhdh8hgpjfqnrjlnp27x3qziks3yf2zp1qq7r4bjfa5jx9gr6")))
(build-system texlive-build-system)
(arguments
(list
#:link-scripts #~(list "mflua.lua")
#:create-formats #~(list "mflua")))
(propagated-inputs (list texlive-luatex texlive-metafont))
(home-page "https://ctan.org/pkg/mflua")
(synopsis "Configuration and base files for MFLua")
(description
"MFLua is an extension of Metafont which embeds a Lua interpreter. It
doesnt introduce any new primitives, so a Metafont file can be used with
MFLua without any modification to produce exactly the same result.")
;; The license is the same as Metafont's, with a couple of files
;; released under Public Domain terms.
(license (list license:knuth license:public-domain))))
(define-public texlive-tex-ini-files
(package
(name "texlive-tex-ini-files")