guix_mirror_bot pushed a commit to branch master
in repository guix.
commit a424f14b19f49eef0080a9c0b3667e6119431c24
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Mar 5 16:07:14 2026 +0100
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 <[email protected]>
---
gnu/packages/guile-xyz.scm | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 9c2e5355b4..4659098d08 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")