mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gexp: Build 'gexp->file' derivations locally.
* guix/gexp.scm (gexp->file): Add #:local-build? argument.
This commit is contained in:
parent
f2cdcafbc1
commit
dc254e0568
1 changed files with 2 additions and 1 deletions
|
@ -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))
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue