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.
parent
e7274a98d5
commit
b5d9ae22f5
|
@ -160,6 +160,8 @@ When TEXLIVE-ONLY is true, only TeX Live packages are returned."
|
||||||
;; And also development packages, which should inherit from
|
;; And also development packages, which should inherit from
|
||||||
;; the current package anyway.
|
;; the current package anyway.
|
||||||
((? (cut string-suffix? "-dev" <>)) #f)
|
((? (cut string-suffix? "-dev" <>)) #f)
|
||||||
|
;; Guix does not use Asymptote from TeX Live. Ignore it.
|
||||||
|
("asymptote" #f)
|
||||||
;; Others.
|
;; Others.
|
||||||
(name name))
|
(name name))
|
||||||
depends)))
|
depends)))
|
||||||
|
|
Reference in New Issue