mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
services: shepherd: Mark '.go' derivations as non-substitutable.
* gnu/services/shepherd.scm (scm->go): Pass #:options to 'computed-file'.
This commit is contained in:
parent
131f50cdc9
commit
0e833ac5f4
1 changed files with 5 additions and 1 deletions
|
@ -269,7 +269,11 @@ and return the resulting '.go' file."
|
|||
(module-use! env (resolve-interface '(oop goops)))
|
||||
(module-use! env (resolve-interface '(shepherd service)))
|
||||
(compile-file #$file #:output-file #$output
|
||||
#:env env))))))
|
||||
#:env env)))
|
||||
|
||||
;; It's faster to build locally than to download.
|
||||
#:options '(#:local-build? #t
|
||||
#:substitutable? #f))))
|
||||
|
||||
(define (shepherd-configuration-file services)
|
||||
"Return the shepherd configuration file for SERVICES."
|
||||
|
|
Loading…
Reference in a new issue