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 3c2c910f58 Reapply "gnu: shepherd-1.0: Use latest guile-fibers." 3c2c910f58 is described below commit 3c2c910f5866078c82eb32e369980b3d1b6bdd40 Author: Maxim Cournoyer <ma...@guixotic.coop> AuthorDate: Tue Sep 16 18:02:11 2025 +0900 Reapply "gnu: shepherd-1.0: Use latest guile-fibers." This reverts commit d4ee55ee19c0ded199b815e36b20232bb76fe41e. --- 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 a4d4c643bc..97b49919fe 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)