diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-02-02 21:24:09 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-02-03 12:41:28 +0100 |
commit | e55f1ac7773841838f82ac10f3bf8cde514ca4dd (patch) | |
tree | 2646860a3004b00ac83b305a94a21b96f8961341 /gnu | |
parent | 825ea91476c7a423a2d72754f2aaf1ea3a244961 (diff) |
gnu: haunt: Switch to 'guile-3.0-latest'.
* gnu/packages/guile-xyz.scm (haunt)[inputs]: Use GUILE-3.0-LATEST
instead of GUILE-3.0.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index c6f25bbdfb..4a7cd8764f 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -2399,7 +2399,9 @@ inspired by the SCSH regular expression system.") `(("pkg-config" ,pkg-config) ("texinfo" ,texinfo))) (inputs - `(("guile" ,guile-3.0))) + ;; Depend on the latest Guile to avoid bytecode compatibility issues when + ;; using modules built against the latest version. + `(("guile" ,guile-3.0-latest))) (propagated-inputs `(("guile-reader" ,guile-reader) ("guile-commonmark" ,guile-commonmark))) |