summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2026-03-05 16:07:14 +0100
committerLudovic Courtès <ludo@gnu.org>2026-03-10 23:07:44 +0100
commita424f14b19f49eef0080a9c0b3667e6119431c24 (patch)
tree78cfb19a35cc581807e3113fefeb33014d0efcbe
parentc664cd93e6e06e24b374040a0ad8c5d077020a00 (diff)
gnu: guile-sparql: Build from a version-control checkout.
* gnu/packages/guile-xyz.scm (guile-sparql)[source]: Switch to ‘git-fetch’. [native-inputs]: Add ‘autoconf’, ‘automake’, and ‘texinfo’. Change-Id: I565d469d59ca8d11c99170719779c4c5f44f74ca Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/packages/guile-xyz.scm15
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 9c2e5355b4e..4659098d08d 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -2170,15 +2170,16 @@ allows users to interact with the Guile REPL through Jupyter.")
(name "guile-sparql")
(version "0.0.8")
(source (origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/roelj/guile-sparql/releases/download/"
- version "/guile-sparql-" version ".tar.gz"))
- (sha256
- (base32 "1jf4972f9fpm0rd865xpnc9mzl3xv6vhfnp0iygadydy905z9nln"))))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/roelj/guile-sparql")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256 (base32
+ "0iy390dsa0rs6d4gapw1s03gz4zba26w5sdiyvnzlygwv0d1inww"))))
(build-system gnu-build-system)
(native-inputs
- (list pkg-config))
+ (list autoconf automake texinfo pkg-config))
(inputs
(list guile-3.0))
(home-page "https://github.com/roelj/guile-sparql")