guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 051a66b8e82a99bed224d140266f4bff56ff2553
Author: Foster Hangdaan <[email protected]>
AuthorDate: Thu Feb 5 18:27:13 2026 -0500

    gnu: transmission: Switch to git-fetch.
    
    * gnu/packages/bittorrent.scm (transmission)[source]: Switch to git-fetch.
    
    Change-Id: If6908e5ee535049408408c1d86a3dfcc673206f3
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/bittorrent.scm | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
index 48575d81e6..19b47eb446 100644
--- a/gnu/packages/bittorrent.scm
+++ b/gnu/packages/bittorrent.scm
@@ -101,13 +101,15 @@
     (name "transmission")
     (version "4.1.0")
     (source (origin
-              (method url-fetch)
-              (uri (string-append 
"https://github.com/transmission/transmission";
-                                  "/releases/download/" version 
"/transmission-"
-                                  version ".tar.xz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/transmission/transmission";)
+                    (commit version)
+                    (recursive? #t)))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1mj9xkfqqk30fhm1yjkgwzbsxm4zbklwknqp9jf249k1kqf8rlnw"))))
+                "1bhvl0axkd5cqbm7dfwhzvxyiz5f32gp74bdyj5jr35y9rmv0nc2"))))
     (build-system cmake-build-system)
     (outputs '("out"                      ; library and command-line interface
                "gui"))                    ; graphical user interface

Reply via email to