Message ID | 20210421122108.2344-2-othacehe@gnu.org |
---|---|
State | New |
Headers | show |
Series | Add manifest support to channel-with-substitutes-available | expand |
Context | Check | Description |
---|---|---|
cbaines/comparison | success | View comparision |
cbaines/git branch | success | View Git branch |
cbaines/applying patch | success | View Laminar job |
cbaines/issue | success | View issue |
diff --git a/guix/scripts/pull.scm b/guix/scripts/pull.scm index 07613240a8..662239b492 100644 --- a/guix/scripts/pull.scm +++ b/guix/scripts/pull.scm @@ -707,7 +707,8 @@ transformations specified in OPTS (resulting from '--url', '--commit', or (string-append %sysconfdir "/guix/channels.scm")) (define (load-channels file) - (let ((result (load* file (make-user-module '((guix channels)))))) + (let ((result (load* file (make-user-module '((guix channels) + (gnu packages)))))) (if (and (list? result) (every channel? result)) result (leave (G_ "'~a' did not return a list of channels~%") file))))