gnu: guile-redis: Don't use unstable tarball.

* gnu/packages/guile-xyz.scm (guile-redis)[source]: Use git-fetch and
git-file-name.
This commit is contained in:
Efraim Flashner 2019-11-13 13:49:39 +02:00
parent 2ada1259e9
commit 29fde3bffa
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351

View File

@ -1858,11 +1858,14 @@ interface for reading articles in any format.")
(version "1.3.0")
(home-page "https://github.com/aconchillo/guile-redis")
(source (origin
(method url-fetch)
(uri (string-append home-page "/archive/" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url home-page)
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1li70a2716my9q9zfq0qn2x5d1cir9k2vx0jm9glm464yaf1vj39"))))
"14izs8daxh7pb7vwpxi5g427qa31137jkaxrb1cy5rpjkwchy723"))))
(build-system gnu-build-system)
(native-inputs
`(("autoconf" ,autoconf)