civodul pushed a commit to branch master
in repository guix.

commit 24ba2cee2b1671c5dae36bb4cdba139f1fd09023
Author: Ludovic Courtès <[email protected]>
Date:   Mon Dec 9 17:18:30 2019 +0100

    gnu: shepherd: Use Guile with the finalization crash bug-fix.
    
    Fixes <https://bugs.gnu.org/37757>.
    Reported by Jesse Gibbons <[email protected]>.
    
    * gnu/packages/admin.scm (shepherd)[native-inputs, inputs]: Use
    GUILE-2.2/BUG-FIX instead of GUILE-2.2.
---
 gnu/packages/admin.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 6fbceb4..63921e0 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -209,10 +209,10 @@ and provides a \"top-like\" mode (monitoring).")
      `(("pkg-config" ,pkg-config)
 
        ;; This is the Guile we use as a cross-compiler...
-       ("guile" ,guile-2.2)))
+       ("guile" ,guile-2.2/bug-fix)))
     (inputs
      ;; ... and this is the one that appears in shebangs when cross-compiling.
-     `(("guile" ,guile-2.2)
+     `(("guile" ,guile-2.2/bug-fix)          ;for <https://bugs.gnu.org/37757>
 
        ;; The 'shepherd' command uses Readline when used interactively.  It's
        ;; an unusual use case though, so we don't propagate it.

Reply via email to