diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-07-25 23:12:16 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-07-26 13:24:28 +0200 |
commit | 81096caf7d122485f09226cdd8b2a117a39be4d9 (patch) | |
tree | 618c08b59b9de8ab0db48ce73e86c7c2540da37b | |
parent | 114a9f1f803b53bd295c44b3719c1ed5dd288e40 (diff) |
gnu: mes: Switch to Guile 3.0.
* gnu/packages/mes.scm (nyacc-1.00.2)[inputs]: Change GUILE-2.2 to
GUILE-3.0.
(mes-0.19)[native-inputs]: Likewise.
* gnu/packages/make-bootstrap.scm (%mes-minimal)[native-inputs]:
Likewise.
-rw-r--r-- | gnu/packages/make-bootstrap.scm | 2 | ||||
-rw-r--r-- | gnu/packages/mes.scm | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm index 9f4f5bb4af..42e0916c9a 100644 --- a/gnu/packages/make-bootstrap.scm +++ b/gnu/packages/make-bootstrap.scm @@ -627,7 +627,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules." (inherit mes) (name "mes-minimal") (native-inputs - `(("guile" ,guile-2.2))) + `(("guile" ,guile-3.0))) (arguments `(#:system "i686-linux" #:strip-binaries? #f diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm index 71083b5061..d9d41c8138 100644 --- a/gnu/packages/mes.scm +++ b/gnu/packages/mes.scm @@ -148,7 +148,7 @@ parsers to allow execution with Guile as extension languages."))) (sha256 (base32 "065ksalfllbdrzl12dz9d9dcxrv97wqxblslngsc6kajvnvlyvpk")))) - (inputs (list guile-2.2)))) + (inputs (list guile-3.0)))) (define-public mes-0.19 ;; Mes used for bootstrap. @@ -166,7 +166,7 @@ parsers to allow execution with Guile as extension languages."))) (supported-systems '("i686-linux" "x86_64-linux")) (propagated-inputs (list mescc-tools nyacc-0.86)) (native-inputs - `(("guile" ,guile-2.2) + `(("guile" ,guile-3.0) ,@(let ((target-system (or (%current-target-system) (%current-system)))) (cond |