This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 2ba475d37a gnu: shepherd-1.0: Use latest guile-fibers.
2ba475d37a is described below
commit 2ba475d37aade4f551d39f65faef8b9c597f1cf9
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Tue Sep 9 14:56:12 2025 +0900
gnu: shepherd-1.0: Use latest guile-fibers.
* gnu/packages/admin.scm (shepherd-1.0) [native-inputs]: Use latest
guile-fibers.
[inputs]: Use latest guile-fibers.
Relates-to: shepherd/shepherd#1
Change-Id: I29483129232062bb764664d4153e43447f3b3f22
---
gnu/packages/admin.scm | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 220d254cb8..c70fa7282c 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -601,8 +601,13 @@ interface and is based on GNU Guile.")
"/bin/gzip")
(string-append "--with-zstd=" #$(this-package-input "zstd")
"/bin/zstd")))))
- (inputs (modify-inputs (package-inputs shepherd-0.10)
- (append gzip zstd)))))
+ (native-inputs
+ (modify-inputs (package-native-inputs shepherd-0.10)
+ (replace "guile-fibers" guile-fibers))) ;use latest guile-fibers
available
+ (inputs
+ (modify-inputs (package-inputs shepherd-0.10)
+ (replace "guile-fibers" guile-fibers) ;use latest guile-fibers available
+ (append gzip zstd)))))
(define-public shepherd shepherd-0.10)