janneke pushed a commit to branch core-packages-team
in repository guix.
commit a02a7aed5ed8d8f97f9c60052882239ed643754f
Author: Tomas Volf <[email protected]>
AuthorDate: Tue Feb 11 23:53:19 2025 +0100
gnu: guile: Add GUILE_EXTENSIONS_PATH to native-search-paths.
* gnu/packages/guile.scm (guile-3.0)[native-search-paths]: Add
GUILE_EXTENSIONS_PATH.
Change-Id: Ia80f6b8467cdc4ba76b4c3e58451c78d5a55cb15
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/packages/guile.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 36db4d482e..8f024d46d8 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -461,7 +461,10 @@ without requiring the source code to be rewritten.")
(search-path-specification
(variable "GUILE_LOAD_COMPILED_PATH")
(files '("lib/guile/3.0/site-ccache"
- "share/guile/site/3.0")))))))
+ "share/guile/site/3.0")))
+ (search-path-specification
+ (variable "GUILE_EXTENSIONS_PATH")
+ (files '("lib/guile/3.0/extensions")))))))
(define-public guile-3.0-latest guile-3.0)