gnu: sparql-query: Don't use unstable tarball.

* gnu/packages/databases.scm (sparql-query)[source]: Download using
git-fetch.
This commit is contained in:
Efraim Flashner 2020-04-19 21:30:14 +03:00
parent 096a0527a1
commit ce64b9d136
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1233,12 +1233,13 @@ (define-public sparql-query
(name "sparql-query")
(version "1.1")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/tialaramex/"
name "/archive/" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/tialaramex/sparql-query")
(commit version)))
(sha256
(base32 "0yq3k20472rv8npcc420q9ab6idy584g5y0q501d360k5q0ggr8w"))
(file-name (string-append name "-" version ".tar.gz"))))
(base32 "0a84a89idpjhj9w2y3fmvzv7ldps1cva1kxvfmh897k02kaniwxk"))
(file-name (git-file-name name version))))
(build-system gnu-build-system)
(inputs
`(("readline" ,readline)