diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-15 18:15:07 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-15 18:15:07 +0100 |
commit | b96909c5c186a40907e47f84179072949abe41e9 (patch) | |
tree | e5f22f8b4e957c83f733bcf425611272ce44b106 | |
parent | 4fec042b54d65a2f44cc3602f7d6f82292e3d1a9 (diff) | |
download | guix-b96909c5c186a40907e47f84179072949abe41e9.tar guix-b96909c5c186a40907e47f84179072949abe41e9.tar.gz |
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).
-rw-r--r-- | guix/build-system/scons.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build-system/scons.scm b/guix/build-system/scons.scm index da09cc7ded..5e76d64180 100644 --- a/guix/build-system/scons.scm +++ b/guix/build-system/scons.scm @@ -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 |