diff options
author | Christopher Baines <mail@cbaines.net> | 2020-10-22 12:31:49 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-10-23 15:40:09 +0100 |
commit | b34ac307e3dfd8914bd433fd3dd10c903d46787c (patch) | |
tree | 6b82789d602020cd1db3367e9e6eb80fa6709825 /gnu/services/guix.scm | |
parent | cc9789550493d7717f0f8eb2e8c8c05230805d30 (diff) | |
download | guix-b34ac307e3dfd8914bd433fd3dd10c903d46787c.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.
Diffstat (limited to 'gnu/services/guix.scm')
-rw-r--r-- | gnu/services/guix.scm | 2 |
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 |