diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-01-29 11:58:50 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-29 12:09:52 +0100 |
commit | f674bc6620ec2aad35dad455c55fd7dea79236e2 (patch) | |
tree | 001b054e7eb2e787ead0509619b6fc95059e576f | |
parent | 9e532ae22a2064298dbfbd45c0fa07e290520818 (diff) |
channels: Do not offload package cache derivation.
* guix/channels.scm (package-cache-file): Pass #:local-build? to
'gexp->derivation-in-inferior'.
-rw-r--r-- | guix/channels.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/channels.scm b/guix/channels.scm index f386d18b74..96d62ce062 100644 --- a/guix/channels.scm +++ b/guix/channels.scm @@ -478,7 +478,8 @@ be used as a profile hook." (gexp->derivation-in-inferior "guix-package-cache" build profile #:properties '((type . profile-hook) - (hook . package-cache))))) + (hook . package-cache)) + #:local-build? #t))) (define %channel-profile-hooks ;; The default channel profile hooks. |