guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: services: nix: Fix nix-shepherd-service.


From: guix-commits
Subject: branch master updated: services: nix: Fix nix-shepherd-service.
Date: Thu, 15 Dec 2022 05:14:18 -0500

This is an automated email from the git hooks/post-receive script.

cbaines pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new f4dc53881b services: nix: Fix nix-shepherd-service.
f4dc53881b is described below

commit f4dc53881b79b324ce7da731ac579a41c5078a48
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu Dec 15 10:13:24 2022 +0000

    services: nix: Fix nix-shepherd-service.
    
    * gnu/services/nix.scm (nix-shepherd-service): Un-gexp build-directory.
---
 gnu/services/nix.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/services/nix.scm b/gnu/services/nix.scm
index dcf994b603..82853253f6 100644
--- a/gnu/services/nix.scm
+++ b/gnu/services/nix.scm
@@ -142,8 +142,8 @@ GID."
                  (list (string-append #$package "/bin/nix-daemon")
                        #$@extra-options)
                  #:environment-variables
-                   (list (string-append "TMPDIR=" build-directory)
-                         "PATH=/run/current-system/profile/bin")))
+                 (list (string-append "TMPDIR=" #$build-directory)
+                       "PATH=/run/current-system/profile/bin")))
        (respawn? #f)
        (stop #~(make-kill-destructor)))))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]