mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: texlive-amstex: Create missing symlink.
* gnu/packages/tex.scm (texlive-amstex)[arguments]<#:phases>: Create missing symlink. Change-Id: Ibd71612febb0e7768e43f432bd3e71af82e39634
This commit is contained in:
parent
4ab789d441
commit
108c954300
1 changed files with 11 additions and 1 deletions
|
@ -3015,7 +3015,17 @@ (define-public texlive-amstex
|
|||
"01yh10g2wwa58q151aqg246bsclks25qvd8axc1v799v37wlgqn3"))))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments (list #:create-formats #~(list "amstex")))
|
||||
(arguments
|
||||
(list #:create-formats #~(list "amstex")
|
||||
#: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 "amstex"))))))))
|
||||
(propagated-inputs
|
||||
(list texlive-amsfonts
|
||||
texlive-cm
|
||||
|
|
Loading…
Reference in a new issue