guix_mirror_bot pushed a commit to branch master
in repository guix.

commit da97d010b71afb00d6ae9353374d0122c2550777
Author: Evgeny Pisemsky <[email protected]>
AuthorDate: Fri Jul 10 20:55:00 2026 +0300

    gnu: guile-daemon: Update to 0.2.
    
    * gnu/packages/guile-xyz.scm (guile-daemon): Update to 0.2, run guix style.
    
    Change-Id: I7e31154b1422e3467cc0b73bc7e63246dfe5d264
    Signed-off-by: Ludovic Courtès <[email protected]>
    Merges: #9860
---
 gnu/packages/guile-xyz.scm | 25 ++++++++++++-------------
 1 file changed, 12 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 326bf42d73..78bf91ff3e 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -863,20 +863,19 @@ library for GNU Guile based on the actor model.")
 (define-public guile-daemon
   (package
     (name "guile-daemon")
-    (version "0.1.3")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/alezost/guile-daemon";)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256 (base32
-                       
"0mdxdiwb52zgpz144vii8f4jdia8a7w1i1mpffw8zh3ghglfrjzl"))))
+    (version "0.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/alezost/guile-daemon";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1l6656f2v0aaqnsxyks96y3q24gya0kxd2c8ma8vdh169y9iwmjz"))))
     (build-system gnu-build-system)
-    (native-inputs
-     (list autoconf automake texinfo pkg-config))
-    (inputs
-     (list guile-3.0))
+    (native-inputs (list autoconf automake texinfo pkg-config))
+    (inputs (list guile-3.0))
     (home-page "https://github.com/alezost/guile-daemon";)
     (synopsis "Evaluate code in a running Guile process")
     (description

Reply via email to