mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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.
This commit is contained in:
parent
cc97895504
commit
b34ac307e3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue