mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: texlive-cluttex: Add "cllualatex" and "clxelatex" symlinks.
* gnu/packages/tex.scm (texlive-cluttex)[arguments]<#:phases>: Add missing symlinks. Change-Id: I3b756d91c87259e8f1e20a06c038653d49dff54d
This commit is contained in:
parent
acb89dcad1
commit
bd25dd493c
1 changed files with 9 additions and 1 deletions
|
@ -41152,7 +41152,15 @@ (define-public texlive-cluttex
|
|||
"06i59jxanssx0hngnzkvmigg4gh0szm8n11095wlpdqrma1d162c"))))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments (list #:link-scripts #~(list "cluttex.lua")))
|
||||
(arguments
|
||||
(list #:link-scripts #~(list "cluttex.lua")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'link-scripts 'add-symlink
|
||||
(lambda _
|
||||
(with-directory-excursion (string-append #$output "/bin")
|
||||
(for-each (lambda (link) (symlink "cluttex" link))
|
||||
'("cllualatex" "clxelatex"))))))))
|
||||
(home-page "https://ctan.org/pkg/cluttex")
|
||||
(synopsis "Automation tool for running LaTeX")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue