From: Christopher Baines Date: Thu, 22 Oct 2020 11:31:49 +0000 (+0100) Subject: services: guix: Fix hooks gexp issue for the Guix Build Coordinator. X-Git-Url: https://git.hcoop.net/jackhill/guix/guix.git/commitdiff_plain/b34ac307e3dfd8914bd433fd3dd10c903d46787c 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. --- 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