gnu: texlive-latex-bin: Create missing "dvilualatex" symlink.

* gnu/packages/tex.scm (texlive-latex-bin)[arguments]: Create dvilualatex symlink.

Change-Id: I690b1ef09194907845ff229c9a58925efe16b0df
This commit is contained in:
Nicolas Goaziou 2024-10-16 20:13:32 +02:00
parent d95588242c
commit 6a07a04bae
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -58244,14 +58244,16 @@ formats.")
;; Create symbolic links for the latex variants. We link lualatex
;; to luahbtex; see issue #51252 for details.
(lambda* (#:key inputs #:allow-other-keys)
(let ((pdftex (search-input-file inputs "bin/pdftex"))
(luahbtex (search-input-file inputs "bin/luahbtex"))
(let ((luahbtex (search-input-file inputs "bin/luahbtex"))
(luatex (search-input-file inputs "bin/luatex"))
(pdftex (search-input-file inputs "bin/pdftex"))
(bin (string-append #$output "/bin")))
(mkdir-p bin)
(with-directory-excursion bin
(symlink luatex "dvilualatex")
(symlink pdftex "latex")
(symlink pdftex "pdflatex")
(symlink luahbtex "lualatex"))))))))
(symlink luahbtex "lualatex")
(symlink pdftex "pdflatex"))))))))
(propagated-inputs
(list texlive-babel
texlive-cm