diff options
| author | Ludovic Courtès | 2014-01-25 17:22:53 +0100 |
|---|---|---|
| committer | Ludovic Courtès | 2014-01-25 17:22:53 +0100 |
| commit | 6ce206cb92ba803de7ff05410787f18ea7d37bae (patch) | |
| tree | d5510fccc78fd8350c3768295622a0d677659705 /guix/profiles.scm | |
| parent | 200a97e64f29dc904961e99bcbc0f20fef431dd2 (diff) | |
Prefer local builds for "small" derivations.
* gnu/system.scm (union, file-union, links): Pass #:local-build? #t to
'derivation-expression'.
* guix/derivations.scm (imported-files, compiled-modules): Likewise.
* guix/profiles.scm (profile-derivation): Likewise.
Diffstat (limited to 'guix/profiles.scm')
| -rw-r--r-- | guix/profiles.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/profiles.scm b/guix/profiles.scm index 1ff6c97f9..c1fa8272b 100644 --- a/guix/profiles.scm +++ b/guix/profiles.scm @@ -257,7 +257,8 @@ the given MANIFEST." ;; already valid. `((,name ,path) ,@deps))) (manifest-entries manifest)) - #:modules '((guix build union)))) + #:modules '((guix build union)) + #:local-build? #t)) (define (profile-regexp profile) "Return a regular expression that matches PROFILE's name and number." |