mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 17:46:43 +01:00
self: Don't substitute the '-source' derivations.
With substitution enabled we would end up downloading 10+ MiB of source that's already available locally on disk. * guix/self.scm (imported-files): Pass #:options to 'computed-file'.
This commit is contained in:
parent
10de06bd07
commit
14b392a8ad
1 changed files with 4 additions and 1 deletions
|
@ -463,7 +463,10 @@ (define build
|
|||
(copy-file store-path final-path)))
|
||||
'#$files))))
|
||||
|
||||
(computed-file name build))
|
||||
;; We're just copying files around, no need to substitute or offload it.
|
||||
(computed-file name build
|
||||
#:options '(#:local-build? #t
|
||||
#:substitutable? #f)))
|
||||
|
||||
(define* (compiled-modules name module-tree modules
|
||||
#:optional
|
||||
|
|
Loading…
Reference in a new issue