3
5
Fork 0
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:
Ludovic Courtès 2020-03-29 15:08:27 +02:00
parent 131f50cdc9
commit 0e833ac5f4
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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."