mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
pull: Add dependency on Guile-JSON.
Reported by Alex Sassmannshausen <alex.sassmannshausen@gmail.com>. * guix/scripts/pull.scm (unpack): Add Guile-JSON to %load-path and %load-compiled-path.
This commit is contained in:
parent
8505493266
commit
6d7328b2f1
1 changed files with 4 additions and 0 deletions
|
@ -47,6 +47,10 @@ (define builder
|
|||
#~(begin
|
||||
(use-modules (guix build pull))
|
||||
|
||||
(let ((json (string-append #$guile-json "/share/guile/site/2.0")))
|
||||
(set! %load-path (cons json %load-path))
|
||||
(set! %load-compiled-path (cons json %load-compiled-path)))
|
||||
|
||||
(build-guix #$output #$tarball
|
||||
|
||||
;; XXX: This is not perfect, enabling VERBOSE? means
|
||||
|
|
Loading…
Reference in a new issue