This is an automated email from the git hooks/post-receive script.
mothacehe pushed a commit to branch core-updates
in repository guix.
The following commit(s) were added to refs/heads/core-updates by this push:
new 1926db5 gnu: guile3.0-guix: Fix cross-compilation.
1926db5 is described below
commit 1926db54a6a31f6676ba5db3668287ce7d709c8b
Author: Mathieu Othacehe <[email protected]>
AuthorDate: Tue Mar 10 11:29:21 2020 +0100
gnu: guile3.0-guix: Fix cross-compilation.
* gnu/packages/package-management.scm (guile3.0-guix)[native-inputs]: Remove
all Guile 2.X libraries and replace them by their 3.0 counterpart.
---
gnu/packages/package-management.scm | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/gnu/packages/package-management.scm
b/gnu/packages/package-management.scm
index 6daad07..c71029e 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -412,6 +412,17 @@ the Nix package manager.")
(package
(inherit guix)
(name "guile3.0-guix")
+ (native-inputs
+ `(("guile" ,guile-3.0)
+ ("gnutls" ,guile3.0-gnutls)
+ ("guile-gcrypt" ,guile3.0-gcrypt)
+ ("guile-json" ,guile3.0-json)
+ ("guile-sqlite3" ,guile3.0-sqlite3)
+ ("guile-ssh" ,guile3.0-ssh)
+ ("guile-git" ,guile3.0-git)
+ ,@(fold alist-delete (package-native-inputs guix)
+ '("guile" "gnutls" "guile-gcrypt" "guile-json"
+ "guile-sqlite3" "guile-ssh" "guile-git"))))
(inputs
`(("guile" ,guile-3.0)
,@(alist-delete "guile" (package-inputs guix))))