mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: texlive-mltex: Create missing symlinks.
* gnu/packages/tex.scm (texlive-mltex)[arguments]<#:phases>: Create missing symlinks. Change-Id: I05c7aa88aee42f01fea96bd36a173fa494d54d6d
This commit is contained in:
parent
9893433023
commit
669355634d
1 changed files with 12 additions and 1 deletions
|
@ -27062,7 +27062,18 @@ (define-public texlive-mltex
|
|||
"1ip0q5kqj6bg4jkginzljknbrd74ss4iky2gvlmf8nnrq06n89my"))))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments (list #:create-formats #~(list "mllatex" "mltex")))
|
||||
(arguments
|
||||
(list #:create-formats #~(list "mllatex" "mltex")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'install 'symlink-binaries
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let ((pdftex (search-input-file inputs "bin/pdftex"))
|
||||
(bin (string-append #$output "/bin")))
|
||||
(mkdir-p bin)
|
||||
(with-directory-excursion bin
|
||||
(symlink pdftex "mllatex")
|
||||
(symlink pdftex "mltex"))))))))
|
||||
(propagated-inputs
|
||||
(list texlive-atbegshi
|
||||
texlive-atveryend
|
||||
|
|
Loading…
Reference in a new issue