mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ (define %scons-build-system-modules
|
||||||
(define (default-scons)
|
(define (default-scons)
|
||||||
"Return the default SCons package."
|
"Return the default SCons package."
|
||||||
;; Lazily resolve the binding to avoid a circular dependency.
|
;; 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)))
|
(module-ref python 'scons)))
|
||||||
|
|
||||||
(define* (lower name
|
(define* (lower name
|
||||||
|
|
Loading…
Reference in a new issue