guix: scons: Fix module reference.
* guix/build-system/scons.scm (default-scons): Find "scons" package in (gnu packages python-xyz) instead of (gnu packages python).
This commit is contained in:
parent
4fec042b54
commit
b96909c5c1
|
@ -43,7 +43,7 @@
|
|||
(define (default-scons)
|
||||
"Return the default SCons package."
|
||||
;; Lazily resolve the binding to avoid a circular dependency.
|
||||
(let ((python (resolve-interface '(gnu packages python))))
|
||||
(let ((python (resolve-interface '(gnu packages python-xyz))))
|
||||
(module-ref python 'scons)))
|
||||
|
||||
(define* (lower name
|
||||
|
|
Loading…
Reference in New Issue