services: guix-build-coordinator: Fix passing parallel-hooks.
The previous approach didn't support a simple alist. * gnu/services/guix.scm (make-guix-build-coordinator-start-script): Fix passing parallel-hooks in to the start gexp.master
parent
430848c6bd
commit
e069de452a
|
@ -309,7 +309,10 @@
|
|||
#$agent-communication-uri-string)
|
||||
#:client-communication-uri (string->uri
|
||||
#$client-communication-uri-string)
|
||||
#:parallel-hooks (list #$@parallel-hooks)))))
|
||||
#:parallel-hooks (list #$@(map (match-lambda
|
||||
((name . val)
|
||||
#~(cons '#$name #$val)))
|
||||
parallel-hooks))))))
|
||||
#:guile guile))
|
||||
|
||||
(define (guix-build-coordinator-shepherd-services config)
|
||||
|
|
Reference in New Issue