From b34ac307e3dfd8914bd433fd3dd10c903d46787c Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Thu, 22 Oct 2020 12:31:49 +0100 Subject: 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(-) (limited to 'gnu/services/guix.scm') diff --git a/gnu/services/guix.scm b/gnu/services/guix.scm index bd7ebcd2aa..665267f5e3 100644 --- a/gnu/services/guix.scm +++ b/gnu/services/guix.scm @@ -209,7 +209,7 @@ (define* (make-guix-build-coordinator-start-script database-uri-string (hooks (list #$@(map (match-lambda ((name . hook-gexp) - #~(cons name #$hook-gexp))) + #~(cons '#$name #$hook-gexp))) hooks))) (hooks-with-defaults `(,@hooks -- cgit v1.2.3