mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: texlive-texsis: Create missing symlink.
* gnu/packages/tex.scm (texlive-texsis)[arguments]<#:phases>: Create missing symlink. Change-Id: Iad8dc76aa53f6794aef3e282bd3de136deab3511
This commit is contained in:
parent
8cb8080a97
commit
711b168c08
1 changed files with 11 additions and 1 deletions
|
@ -36414,7 +36414,17 @@ (define-public texlive-texsis
|
|||
"1vdywyg03ab5w50370ml8hwiidim2sy7hhygmz917rnhsnm87lnv"))))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments (list #:create-formats #~(list "texsis")))
|
||||
(arguments
|
||||
(list #:create-formats #~(list "texsis")
|
||||
#: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 "texsis"))))))))
|
||||
(propagated-inputs
|
||||
(list texlive-cm
|
||||
texlive-hyphen-base
|
||||
|
|
Loading…
Reference in a new issue