guix_mirror_bot pushed a commit to branch master
in repository guix.

commit a5fe5ba8f31d9e1306617df428a00c7803178317
Author: Sergey Trofimov <[email protected]>
AuthorDate: Sun Nov 24 14:50:00 2024 +0100

    gnu: geoclue: Fetch from git.
    
    * gnu/packages/gnome.scm (geoclue) [source]: Use git-fetch.
---
 gnu/packages/gnome.scm | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 5c1df36c93..655808cbaf 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -5698,12 +5698,14 @@ output devices.")
     (version "2.7.2")
     (source
      (origin
-       (method url-fetch)
-       (uri
-        (string-append 
"https://gitlab.freedesktop.org/geoclue/geoclue/-/archive/";
-                       version "/geoclue-" version ".tar.bz2"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://gitlab.freedesktop.org/geoclue/geoclue";)
+             (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "1ljn4k1zlfx0ymmdz8ycfb976vx8r61sx68q854r0xinl124mlh1"))
+        (base32
+         "1fq5pmypbm6v9ychh9v1k71801jbr3igrxzsq36vy7cxs1dga0ig"))
        (patches (search-patches "geoclue-config.patch"))))
     (build-system meson-build-system)
     (arguments

Reply via email to