mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 11:29:59 +01:00
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:
parent
d95588242c
commit
6a07a04bae
1 changed files with 6 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue