guix-commits
[Top][All Lists]
Advanced

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

01/10: services: guix: Fix hooks gexp issue for the Guix Build Coordinat


From: guix-commits
Subject: 01/10: services: guix: Fix hooks gexp issue for the Guix Build Coordinator.
Date: Fri, 23 Oct 2020 10:41:37 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit b34ac307e3dfd8914bd433fd3dd10c903d46787c
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu Oct 22 12:31:49 2020 +0100

    services: guix: Fix hooks gexp issue for the Guix Build Coordinator.
    
    * gnu/services/guix.scm (make-guix-build-coordinator-start-script): Fix
    handling the name within the hook gexp.
---
 gnu/services/guix.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/services/guix.scm b/gnu/services/guix.scm
index bd7ebcd..665267f 100644
--- a/gnu/services/guix.scm
+++ b/gnu/services/guix.scm
@@ -209,7 +209,7 @@
                 (hooks
                  (list #$@(map (match-lambda
                                  ((name . hook-gexp)
-                                  #~(cons name #$hook-gexp)))
+                                  #~(cons '#$name #$hook-gexp)))
                                hooks)))
                 (hooks-with-defaults
                  `(,@hooks



reply via email to

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