guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 5eb4e0223e57df3150e9794e8995070ddfc16860
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Mar 5 16:15:48 2026 +0100

    gnu: g-wrap: Build from a version-control checkout.
    
    * gnu/packages/guile-xyz.scm (g-wrap)[source]: Switch to ‘git-fetch’.
    [native-inputs]: Add ‘autoconf’, ‘automake‘, ‘libtool’, ‘gnu-gettext’, and
    ‘texinfo’.
    
    Change-Id: Ibf512fe75488dcf9345986a772bb10bf4231d857
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/guile-xyz.scm | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 3ba080c162..82c11fbe6f 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -3704,15 +3704,22 @@ client bindings for Wayland.")
     (name "g-wrap")
     (version "1.9.15")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "mirror://savannah/g-wrap/g-wrap-"
-                                  version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://https.git.savannah.gnu.org/git/g-wrap.git";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "0ak0bha37dfpj9kmyw1r8fj8nva639aw5xr66wr5gd3l1rqf5xhg"))))
+                "19bwqfk33djd51ijylvcmz3zz9pqvv1k7bk8k912b1bwbpfr3j0y"))))
     (build-system gnu-build-system)
     (native-inputs
-     (list pkg-config))
+     (list autoconf
+           automake
+           libtool
+           gnu-gettext                 ;for 'AC_LIB_LINKFLAGS_FROM_LIBS' macro
+           texinfo
+           pkg-config))
     (propagated-inputs
      (list guile-2.2 guile-lib))
     (inputs

Reply via email to