guix_mirror_bot pushed a commit to branch core-packages-team in repository guix.
commit 25eb736b9c61d34c88fe284fb75f875f365c9dd3 Author: Tomas Volf <~@wolfsden.cz> 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 <l...@gnu.org> --- 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 408f991192..60675457e0 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -467,7 +467,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)