guix-commits
[Top][All Lists]
Advanced

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

02/04: gexp: 'computed-file' has a new #:guile parameter.


From: Ludovic Courtès
Subject: 02/04: gexp: 'computed-file' has a new #:guile parameter.
Date: Mon, 11 Dec 2017 05:36:05 -0500 (EST)

civodul pushed a commit to branch wip-pull-reload
in repository guix.

commit cc385de3c9b9bedb0e0a57dfd86f93d866d2fc66
Author: Ludovic Courtès <address@hidden>
Date:   Sun Dec 10 16:35:41 2017 +0100

    gexp: 'computed-file' has a new #:guile parameter.
    
    * guix/gexp.scm (<computed-file>)[guile]: New field.
    (computed-file): Add #:guile.
    (computed-file-compiler): Honor 'guile'.
---
 guix/gexp.scm | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/guix/gexp.scm b/guix/gexp.scm
index 1929947..f005c4d 100644
--- a/guix/gexp.scm
+++ b/guix/gexp.scm
@@ -343,28 +343,34 @@ This is the declarative counterpart of 'text-file'."
      (text-file name content references))))
 
 (define-record-type <computed-file>
-  (%computed-file name gexp options)
+  (%computed-file name gexp guile options)
   computed-file?
   (name       computed-file-name)                 ;string
   (gexp       computed-file-gexp)                 ;gexp
+  (guile      computed-file-guile)                ;<package>
   (options    computed-file-options))             ;list of arguments
 
 (define* (computed-file name gexp
-                        #:key (options '(#:local-build? #t)))
+                        #:key guile (options '(#:local-build? #t)))
   "Return an object representing the store item NAME, a file or directory
 computed by GEXP.  OPTIONS is a list of additional arguments to pass
 to 'gexp->derivation'.
 
 This is the declarative counterpart of 'gexp->derivation'."
-  (%computed-file name gexp options))
+  (%computed-file name gexp guile options))
 
 (define-gexp-compiler (computed-file-compiler (file <computed-file>)
                                               system target)
   ;; Compile FILE by returning a derivation whose build expression is its
   ;; gexp.
   (match file
-    (($ <computed-file> name gexp options)
-     (apply gexp->derivation name gexp options))))
+    (($ <computed-file> name gexp guile options)
+     (if guile
+         (mlet %store-monad ((guile (lower-object guile system
+                                                  #:target target)))
+           (apply gexp->derivation name gexp #:guile-for-build guile
+                  options))
+         (apply gexp->derivation name gexp options)))))
 
 (define-record-type <program-file>
   (%program-file name gexp guile)



reply via email to

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