me
/
guix
Archived
1
0
Fork 0

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.
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
1 changed files with 2 additions and 0 deletions

View File

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