From 7f010e00cca7e83145f5478eeaad875b76d24043 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(-) 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 @@ (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