diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-16 03:07:29 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:18:24 +0200 |
commit | b5d9ae22f5177778b6af28fc7848358e31cc828f (patch) | |
tree | 2d6b9c88e6932f9a5df1b892aa88bd2fc82cd28e /guix/import | |
parent | e7274a98d5f5732ca276c0b47048d70869957ebf (diff) |
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.
Diffstat (limited to 'guix/import')
-rw-r--r-- | guix/import/texlive.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/import/texlive.scm b/guix/import/texlive.scm index de08981d46..e7229b47d1 100644 --- a/guix/import/texlive.scm +++ b/guix/import/texlive.scm @@ -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))) |