mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
guix: texlive import ignores TeXworks.
* guix/import/texlive.scm (translate-depends): Ignore TeXworks files from TeX Live, since they are Windows-only.
This commit is contained in:
parent
b5d9ae22f5
commit
985cf777b9
1 changed files with 2 additions and 0 deletions
|
@ -162,6 +162,8 @@ (define* (translate-depends depends #:optional texlive-only)
|
|||
((? (cut string-suffix? "-dev" <>)) #f)
|
||||
;; Guix does not use Asymptote from TeX Live. Ignore it.
|
||||
("asymptote" #f)
|
||||
;; TeXworks in TeX Live is only for Windows. Don't bother.
|
||||
((or "texworks" "collection-texworks") #f)
|
||||
;; Others.
|
||||
(name name))
|
||||
depends)))
|
||||
|
|
Loading…
Reference in a new issue