3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01: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:
Nicolas Goaziou 2023-07-16 09:54:29 +02:00
parent b5d9ae22f5
commit 985cf777b9
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -162,6 +162,8 @@ When TEXLIVE-ONLY is true, only TeX Live packages are returned."
((? (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)))