summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2026-03-05 16:26:20 +0100
committerLudovic Courtès <ludo@gnu.org>2026-03-10 23:07:45 +0100
commite70a0d0d6afd122a5756e2da5e0aafc55c9509d9 (patch)
treefbd0cdf8d31b4da2280c272cbf17772e626178b3 /gnu
parent22237a6b70f74d233b8d336616fc9abcedff11bb (diff)
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 <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/guile-xyz.scm17
1 files changed, 10 insertions, 7 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index bf83d4f3bad..be65537c0f6 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)