diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-11-13 13:49:39 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-11-13 13:49:39 +0200 |
commit | 29fde3bffaa5cb314a901f4a2628353797e48c08 (patch) | |
tree | 26323d9eb1c4b3e000bb0a877b1ad79e48273999 | |
parent | 2ada1259e9e9df93eabce101cc23f970cd3ac7d9 (diff) | |
download | patches-29fde3bffaa5cb314a901f4a2628353797e48c08.tar patches-29fde3bffaa5cb314a901f4a2628353797e48c08.tar.gz |
gnu: guile-redis: Don't use unstable tarball.
* gnu/packages/guile-xyz.scm (guile-redis)[source]: Use git-fetch and
git-file-name.
-rw-r--r-- | gnu/packages/guile-xyz.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index eef102432f..49ef5f2892 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -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) |