diff options
| author | Maxim Cournoyer <maxim@guixotic.coop> | 2025-09-10 22:25:25 +0900 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-09-10 22:26:38 +0900 |
| commit | d4ee55ee19c0ded199b815e36b20232bb76fe41e (patch) | |
| tree | b70e8345d815381482d14702aef5cbd938389392 /gnu | |
| parent | dc4b93311ceae309231722ee0ed0f70050dfbd64 (diff) | |
Revert "gnu: shepherd-1.0: Use latest guile-fibers."
This reverts commit 2ba475d37aade4f551d39f65faef8b9c597f1cf9. Fibers 1.4.0
introduces a new bug, which uses 100% of a CPU core. Reported in
<https://codeberg.org/shepherd/shepherd/issues/1>.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/admin.scm | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index c70fa7282c3..220d254cb81 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -601,13 +601,8 @@ interface and is based on GNU Guile.") "/bin/gzip") (string-append "--with-zstd=" #$(this-package-input "zstd") "/bin/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))))) + (inputs (modify-inputs (package-inputs shepherd-0.10) + (append gzip zstd))))) (define-public shepherd shepherd-0.10) |
