mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: texlive-lollipop: Create missing symlink.
* gnu/packages/tex.scm (texlive-lollipop)[arguments]<#:phases>: Create missing symlink. [propagated-inputs]: Add TEXLIVE-TEX. Change-Id: Id147f8b2210193df5b2b4e9de3bfa0ec3b39f431
This commit is contained in:
parent
01a33939c5
commit
90fa6f1105
1 changed files with 12 additions and 2 deletions
|
@ -24639,8 +24639,18 @@ (define-public texlive-lollipop
|
|||
"0xdldlnhsr2n8544j9vd6gllin8bfkpcbhlpmxlhrvjl5bdg0rjp"))))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments (list #:create-formats #~(list "lollipop")))
|
||||
(propagated-inputs (list texlive-cm texlive-hyphen-base))
|
||||
(arguments
|
||||
(list #:create-formats #~(list "lollipop")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'install 'symlink-binaries
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let ((tex (search-input-file inputs "bin/tex"))
|
||||
(bin (string-append #$output "/bin")))
|
||||
(mkdir-p bin)
|
||||
(with-directory-excursion bin
|
||||
(symlink tex "lollipop"))))))))
|
||||
(propagated-inputs (list texlive-cm texlive-hyphen-base texlive-tex))
|
||||
(home-page "https://ctan.org/pkg/lollipop")
|
||||
(synopsis "TeX made easy")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue