3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

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

* guix/gexp.scm (gexp->file): Add #:local-build? argument.
This commit is contained in:
Ludovic Courtès 2014-07-16 15:48:28 +02:00
parent f2cdcafbc1
commit dc254e0568

View file

@ -377,7 +377,8 @@ its search path."
(gexp
(call-with-output-file (ungexp output)
(lambda (port)
(write '(ungexp exp) port))))))
(write '(ungexp exp) port))))
#:local-build? #t))