diff options
author | Leo Famulari <leo@famulari.name> | 2017-02-23 12:08:02 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-02-23 13:03:14 -0500 |
commit | b191f0a6c50f2a7d47037ef8509d0351f5a2646e (patch) | |
tree | b07a1e8f5c821a5253f468dc2d5639bbd9431f83 /gnu | |
parent | 94b28aed1e4f151997cb2bc70df20f0eea11ee1b (diff) | |
download | patches-b191f0a6c50f2a7d47037ef8509d0351f5a2646e.tar patches-b191f0a6c50f2a7d47037ef8509d0351f5a2646e.tar.gz |
services: guix: Support building in a directory besides '/tmp'.
* gnu/services/base.scm (<guix-configuration>)[tmpdir]: New field.
(guix-shepherd-service): Use 'tmpdir' in #:environment-variables.
* doc/guix.texi (Base Services)[guix-configuration]: Document it.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/services/base.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm index 0fb7bd721c..7ae815d4b5 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -1116,6 +1116,8 @@ failed to register hydra.gnu.org public key: ~a~%" status)))))))) (lsof guix-configuration-lsof ;<package> (default lsof)) (http-proxy guix-http-proxy ;string | #f + (default #f)) + (tmpdir guix-tmpdir ;string | #f (default #f))) (define %default-guix-configuration @@ -1127,7 +1129,7 @@ failed to register hydra.gnu.org public key: ~a~%" status)))))))) (($ <guix-configuration> guix build-group build-accounts authorize-key? keys use-substitutes? substitute-urls extra-options - log-file lsof http-proxy) + log-file lsof http-proxy tmpdir) (list (shepherd-service (documentation "Run the Guix daemon.") (provision '(guix-daemon)) @@ -1147,6 +1149,9 @@ failed to register hydra.gnu.org public key: ~a~%" status)))))))) (list (string-append "PATH=" #$lsof "/bin") #$@(if http-proxy (list (string-append "http_proxy=" http-proxy)) + '()) + #$@(if tmpdir + (list (string-append "TMPDIR=" tmpdir)) '())) #:log-file #$log-file)) |