z572 pushed a commit to branch master
in repository guix.

commit d52d8fe59614d712ed90373187db81a67e943fe8
Author: Zheng Junjie <[email protected]>
AuthorDate: Sun Dec 15 21:08:06 2024 +0800

    gnu: catatonit: Use git source.
    
    * gnu/packages/containers.scm (catatonit)[source]: Switch to git-fetch.
    
    Change-Id: Ic4340262a554a8799281b56074865b6d7f3a2378
---
 gnu/packages/containers.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/containers.scm b/gnu/packages/containers.scm
index d8a8546cde..9408f9b353 100644
--- a/gnu/packages/containers.scm
+++ b/gnu/packages/containers.scm
@@ -441,12 +441,13 @@ The binary is called @command{gvproxy}.")
     (version "0.2.1")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/openSUSE/catatonit/releases/download/v";
-             version "/catatonit.tar.xz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/openSUSE/catatonit/";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "1g2rpnr97z5lc8a2l1qndbdlcp3mx8qckg8qyq92x1mg05al4l4r"))))
+        (base32 "14vh0xpg6lzmh7r52vi9w1qfc14r7cfhfrbca7q5fg62d3hx7kxi"))))
     (build-system gnu-build-system)
     (native-inputs
      (list autoconf automake libtool))

Reply via email to