bug#74633: [PATCH v4] ui: Search channels for guix extensions
Commit Message
Hi Brian,
Brian Kubisiak <brian@kubisiak.com> skribis:
> * guix/describe.scm (append-channels-to-load-path!): New function.
> * gnu/packages.scm (%package-module-path): Call new function. Remove
> the code that the function call replaces.
> * guix/ui.scm (extension-directories): Call new function. Search
> channels for guix extensions.
> * guix/self.scm (compiled-guix)[*core-modules*]: Add 'guile-git' to
> the list of extensions.
>
> Change-Id: I53af828dc554485ca28389c9e2653ea6b4fb6b7e
Finally applied, with the cosmetic changes below.
Thanks!
Ludo’.
@@ -2197,11 +2197,12 @@ (define (extension-directories)
;; We need to resolve these lazily, because even using an #:autoload is too
;; much and breaks compilation during "guix pull".
(define append-channels-to-load-path!
- (module-ref (resolve-module `(guix describe))
- (symbol-append 'append-channels-to-load-path!)))
+ (module-ref (resolve-interface '(guix describe))
+ 'append-channels-to-load-path!))
(define package-path-entries
- (module-ref (resolve-module `(guix describe))
- (symbol-append 'package-path-entries)))
+ (module-ref (resolve-interface '(guix describe))
+ 'package-path-entries))
+
(append-channels-to-load-path!)
(let ((channels (package-path-entries)))
(filter file-exists?