guix_mirror_bot pushed a commit to branch master
in repository guix.

commit e70a0d0d6afd122a5756e2da5e0aafc55c9509d9
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Mar 5 16:26:20 2026 +0100

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

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index bf83d4f3ba..be65537c0f 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -3867,15 +3867,18 @@ many readers as needed).")
     (name "guile-ncurses")
     (version "3.1")
     (source (origin
-             (method url-fetch)
-             (uri (string-append "mirror://gnu/guile-ncurses/guile-ncurses-"
-                                 version ".tar.gz"))
-             (sha256
-              (base32
-               "0cypz1ikw66n8bc2klsnnaj1plpl22dwq6pwyc7dvffamz7fi2gf"))))
+              (method git-fetch)
+              (uri (git-reference
+                    (url
+                     
"https://https.git.savannah.gnu.org/git/guile-ncurses.git";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "00xhlca5s278i4g74qgks35ymisa98rhcj63bflja289gpb7j8wf"))))
     (build-system gnu-build-system)
     (inputs (list ncurses guile-3.0))
-    (native-inputs (list pkg-config))
+    (native-inputs (list autoconf automake libtool texinfo pkg-config))
     (arguments
      `(#:modules ((guix build gnu-build-system)
                   ((guix build guile-build-system)

Reply via email to