guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: guix: scons: Fix module reference.


From: guix-commits
Subject: 01/01: guix: scons: Fix module reference.
Date: Tue, 15 Jan 2019 12:16:35 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit b96909c5c186a40907e47f84179072949abe41e9
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Jan 15 18:15:07 2019 +0100

    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).
---
 guix/build-system/scons.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/build-system/scons.scm b/guix/build-system/scons.scm
index da09cc7..5e76d64 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]