This is an automated email from the git hooks/post-receive script.
cbaines pushed a commit to branch master
in repository guix-cuirass.
The following commit(s) were added to refs/heads/master by this push:
new 68a6912 build-aux: Update for Guile 3.
68a6912 is described below
commit 68a6912ce2e5d281bc7b45bf447b7695f5425388
Author: Christopher Baines <[email protected]>
AuthorDate: Mon May 25 11:05:27 2020 +0100
build-aux: Update for Guile 3.
* build-aux/guix.scm (arguments): Change 2.2 to 3.0.
(inputs): Change [email protected] to guile.
---
build-aux/guix.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/build-aux/guix.scm b/build-aux/guix.scm
index 49b46f0..c963b05 100644
--- a/build-aux/guix.scm
+++ b/build-aux/guix.scm
@@ -69,15 +69,15 @@
(json (assoc-ref inputs "guile-json"))
(sqlite (assoc-ref inputs "guile-sqlite3"))
(guix (assoc-ref inputs "guix"))
- (mods (string-append json "/share/guile/site/2.2:"
- sqlite "/share/guile/site/2.2:"
- guix "/share/guile/site/2.2")))
+ (mods (string-append json "/share/guile/site/3.0:"
+ sqlite "/share/guile/site/3.0:"
+ guix "/share/guile/site/3.0")))
(wrap-program (string-append out "/bin/cuirass")
`("GUILE_LOAD_PATH" ":" prefix (,mods))
`("GUILE_LOAD_COMPILED_PATH" ":" prefix (,mods)))))))))
(inputs
(map spec+package-list
- '("[email protected]"
+ '("guile"
"guile-fibers"
"guile-json"
"guile-sqlite3"