aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-10-22 12:31:49 +0100
committerChristopher Baines <mail@cbaines.net>2020-10-22 16:59:19 +0100
commit7f010e00cca7e83145f5478eeaad875b76d24043 (patch)
tree32d794b93ef04ee88ffcb1acf5d3e69b7d3761b2
parentcad55e91fd5a481279e6286a2728761b8da7c07a (diff)
downloadguix-7f010e00cca7e83145f5478eeaad875b76d24043.tar
guix-7f010e00cca7e83145f5478eeaad875b76d24043.tar.gz
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.
-rw-r--r--gnu/services/guix.scm2
1 files changed, 1 insertions, 1 deletions
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