me
/
guix
Archived
1
0
Fork 0

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
Christopher Baines 2022-07-03 20:38:09 +01:00
parent 430848c6bd
commit e069de452a
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 4 additions and 1 deletions

View File

@ -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)