guix-commits
[Top][All Lists]
Advanced

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

01/01: packages: Use Guile 2.0 for grafting.


From: Ludovic Courtès
Subject: 01/01: packages: Use Guile 2.0 for grafting.
Date: Wed, 23 Aug 2017 18:47:17 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit e4925e00ca420737556e2039b4fa1c40121ee567
Author: Ludovic Courtès <address@hidden>
Date:   Thu Aug 24 00:41:44 2017 +0200

    packages: Use Guile 2.0 for grafting.
    
    Works around <https://bugs.gnu.org/28211>.
    Reported by Marius Bakke <address@hidden>.
    
    * guix/packages.scm (guile-2.0): New procedure.
    (package-derivation, package-cross-derivation): Use it when computing
    the #:guile argument to 'graft-derivation'.
---
 guix/packages.scm | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/guix/packages.scm b/guix/packages.scm
index 3528db4..f619d9b 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -414,6 +414,13 @@ derivations."
   (let ((distro (resolve-interface '(gnu packages commencement))))
     (module-ref distro 'guile-final)))
 
+(define (guile-2.0)
+  "Return Guile 2.0."
+  ;; FIXME: This is used as a workaround for <https://bugs.gnu.org/28211> when
+  ;; grafting packages.
+  (let ((distro (resolve-interface '(gnu packages guile))))
+    (module-ref distro 'guile-2.0)))
+
 (define* (default-guile-derivation #:optional (system (%current-system)))
   "Return the derivation for SYSTEM of the default Guile package used to run
 the build code of derivation."
@@ -1145,7 +1152,7 @@ This is an internal procedure."
                   (()
                    drv)
                   (grafts
-                   (let ((guile (package-derivation store (default-guile)
+                   (let ((guile (package-derivation store (guile-2.0)
                                                     system #:graft? #f)))
                      ;; TODO: As an optimization, we can simply graft the tip
                      ;; of the derivation graph since 'graft-derivation'
@@ -1171,7 +1178,7 @@ system identifying string)."
                    (graft-derivation store drv grafts
                                      #:system system
                                      #:guile
-                                     (package-derivation store (default-guile)
+                                     (package-derivation store (guile-2.0)
                                                          system #:graft? #f))))
                 drv))))
 



reply via email to

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