summaryrefslogtreecommitdiff
path: root/guix/import
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2023-07-16 09:54:29 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2023-07-18 18:18:24 +0200
commit985cf777b9aa394d4469205d6fea98d367a2ef32 (patch)
treee95f8eafc64d3eef899c3b62e56ed058c7d1e865 /guix/import
parentb5d9ae22f5177778b6af28fc7848358e31cc828f (diff)
guix: texlive import ignores TeXworks.
* guix/import/texlive.scm (translate-depends): Ignore TeXworks files from TeX Live, since they are Windows-only.
Diffstat (limited to 'guix/import')
-rw-r--r--guix/import/texlive.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/import/texlive.scm b/guix/import/texlive.scm
index e7229b47d1..bddd9f1c5a 100644
--- a/guix/import/texlive.scm
+++ b/guix/import/texlive.scm
@@ -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)))