Skip to content
Snippets Groups Projects
Commit dc254e05 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

gexp: Build 'gexp->file' derivations locally.

* guix/gexp.scm (gexp->file): Add #:local-build? argument.
parent f2cdcafb
No related branches found
No related tags found
No related merge requests found
......@@ -377,7 +377,8 @@ (define (gexp->file name exp)
(gexp
(call-with-output-file (ungexp output)
(lambda (port)
(write '(ungexp exp) port))))))
(write '(ungexp exp) port))))
#:local-build? #t))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment