civodul pushed a commit to branch master
in repository guix.
commit 3a5fbced6fa1b1dd5bad45b6fccceb84f0470c8d
Author: Ludovic Courtès <[email protected]>
AuthorDate: Wed Mar 24 22:38:39 2021 +0100
gexp: 'imported+compiled-modules' fully honors #:guile.
* guix/gexp.scm (imported+compiled-modules): Pass #:guile to
'imported-modules'.
---
guix/gexp.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/guix/gexp.scm b/guix/gexp.scm
index b9a2483..b01c78b 100644
--- a/guix/gexp.scm
+++ b/guix/gexp.scm
@@ -936,6 +936,7 @@ second element is the derivation to compile them."
(mcached equal?
(mlet %store-monad ((modules (if (pair? modules)
(imported-modules modules
+ #:guile guile
#:system system
#:module-path
module-path)
(return #f)))