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
This commit is contained in:
Maxim Cournoyer 2025-09-09 14:56:12 +09:00
parent e4a6c73831
commit 2ba475d37a
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

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