guix: texlive importer ignores Asymptote package.

Asymptote is provided in `asymptote' Guix package.  OTOH, asy executable is
not built from TeX Live tree.  Therefore, Asymptote package from TeX Live can be ignored.

* guix/import/texlive.scm (translate-depends): Ignore Asymptote package.
This commit is contained in:
Nicolas Goaziou 2023-07-16 03:07:29 +02:00
parent e7274a98d5
commit b5d9ae22f5
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -160,6 +160,8 @@ (define* (translate-depends depends #:optional texlive-only)
;; And also development packages, which should inherit from
;; the current package anyway.
((? (cut string-suffix? "-dev" <>)) #f)
;; Guix does not use Asymptote from TeX Live. Ignore it.
("asymptote" #f)
;; Others.
(name name))
depends)))