diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-06-29 18:37:42 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-06-29 18:37:42 +0200 |
commit | 809f815cf6366d8ff2d065a935bdcdffb4fbf0e2 (patch) | |
tree | edf9f257a043b984b00bee48cf95365be98ad224 | |
parent | ea4c1463cf0297bf140f3054a1ea25744d4dfc89 (diff) | |
download | guix-809f815cf6366d8ff2d065a935bdcdffb4fbf0e2.tar.gz guix-809f815cf6366d8ff2d065a935bdcdffb4fbf0e2.zip |
gnu: asymptote: Update to 2.90.
* gnu/packages/plotutils.scm (asymptote): Update to 2.90.
[native-inputs]: Add TEXLIVE-TYPE1CM.
Change-Id: I319553c33e004e94474ac2505de5b3b5a01ffd9a
-rw-r--r-- | gnu/packages/plotutils.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/plotutils.scm b/gnu/packages/plotutils.scm index c7d4b15c4a..59901caa47 100644 --- a/gnu/packages/plotutils.scm +++ b/gnu/packages/plotutils.scm @@ -67,14 +67,14 @@ (define-public asymptote (package (name "asymptote") - (version "2.89") + (version "2.90") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/asymptote/" version "/asymptote-" version ".src.tgz")) (sha256 - (base32 "0nvzlnabxjn74ybv3jns9vsr33prlvlg3i20hskz31agxss64kpn")) + (base32 "0h3kf0jajn67izpg6h1bi50qrsdslr7mnacp4j7lmx4bh3xmcscc")) (modules '((guix build utils))) (snippet ;; Remove bundled RapidJSON. @@ -108,7 +108,8 @@ texlive-ocgx2 texlive-parskip texlive-pdftexcmds - texlive-texinfo)))) + texlive-texinfo + texlive-type1cm)))) (inputs (list bash-minimal eigen |