andreas pushed a commit to branch tex-team
in repository guix.
commit 35392245dcb6fbfa611e06f68508f28a09109b15
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Wed Oct 16 20:13:32 2024 +0200
gnu: texlive-latex-bin: Create missing "dvilualatex" symlink.
* gnu/packages/tex.scm (texlive-latex-bin)[arguments]: Create dvilualatex
symlink.
Change-Id: I690b1ef09194907845ff229c9a58925efe16b0df
---
gnu/packages/tex.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 04632e8408..8b987deb89 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -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