[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/10: services: guix: Fix hooks gexp issue for the Guix Build Coordinat
From: |
guix-commits |
Subject: |
01/10: services: guix: Fix hooks gexp issue for the Guix Build Coordinator. |
Date: |
Fri, 23 Oct 2020 10:41:37 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit b34ac307e3dfd8914bd433fd3dd10c903d46787c
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu Oct 22 12:31:49 2020 +0100
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.
---
gnu/services/guix.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/services/guix.scm b/gnu/services/guix.scm
index bd7ebcd..665267f 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
- branch master updated (cc97895 -> 69e08c1), guix-commits, 2020/10/23
- 01/10: services: guix: Fix hooks gexp issue for the Guix Build Coordinator.,
guix-commits <=
- 04/10: services: guix-build-coordinator: Include the system profile in PATH., guix-commits, 2020/10/23
- 08/10: gnu: guix-build-coordinator: Fix indentation., guix-commits, 2020/10/23
- 03/10: services: guix-build-coordinator: Output the start script name., guix-commits, 2020/10/23
- 10/10: gnu: guix-build-coordinator: Update to 0-4.d38698d., guix-commits, 2020/10/23
- 02/10: gnu: guix-build-coordinator: Ensure gnutls is available., guix-commits, 2020/10/23
- 05/10: services: guix-build-coordinator: Configure output buffering., guix-commits, 2020/10/23
- 06/10: services: guix: Fix the guix-build-coordinator metrics namespace., guix-commits, 2020/10/23
- 07/10: gnu: guix-build-coordinator: Propagate the guile inputs., guix-commits, 2020/10/23
- 09/10: gnu: guix-build-coordinator: Switch to guile-json-4., guix-commits, 2020/10/23