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 784c15a35e gnu: guile-websocket: Update to 0.2.1.
784c15a35e is described below

commit 784c15a35ecba44b51016df71156a3993de41500
Author: David Thompson <[email protected]>
AuthorDate: Wed Aug 6 11:39:14 2025 -0400

    gnu: guile-websocket: Update to 0.2.1.
    
    * gnu/packages/guile-xyz.scm (guile-websocket): Update to 0.2.1. Also, code
    style changes as recommended by 'guix style'.
    
    Change-Id: I8e7e859fcf71f847e7fae97d75e2cca7ab3a07fc
---
 gnu/packages/guile-xyz.scm | 26 ++++++++++++--------------
 1 file changed, 12 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index f683115cb6..3c52d46eda 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -6339,22 +6339,20 @@ Relay Chat} (IRC).")
 (define-public guile-websocket
   (package
     (name "guile-websocket")
-    (version "0.2.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://files.dthompson.us/guile-websocket/";
-                                  "guile-websocket-" version ".tar.gz"))
-              (sha256
-               (base32
-                "143ng1x5xwy218wd1svj718ikqnrglwsywyzpd3ap9jnivw66g7f"))))
+    (version "0.2.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://files.dthompson.us/releases/";
+                           "guile-websocket/guile-websocket-" version
+                           ".tar.gz"))
+       (sha256
+        (base32 "0mbxbwc5flrafh77sl0cbfclpk3vys0hh3fqmdl9v3nqyl0cbsij"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:make-flags
-       '("GUILE_AUTO_COMPILE=0")))
-    (native-inputs
-     (list autoconf automake pkg-config))
-    (inputs
-     (list guile-3.0 guile-gnutls))
+     '(#:make-flags '("GUILE_AUTO_COMPILE=0")))
+    (native-inputs (list autoconf automake pkg-config))
+    (inputs (list guile-3.0 guile-gnutls))
     (synopsis "Websocket server/client for Guile")
     (description "Guile-websocket provides an implementation of the
 WebSocket protocol as defined by RFC 6455.")

Reply via email to