summaryrefslogtreecommitdiff
path: root/gnu/packages/datastructures.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2019-11-24 19:16:50 +0200
committerEfraim Flashner <efraim@flashner.co.il>2019-11-25 14:08:30 +0200
commitfea30e12f7b0810c90b278127a7d3c75ef59cec7 (patch)
tree054ef5aa009f3f170ef6d890a90b9a3e5f154844 /gnu/packages/datastructures.scm
parente56d02a0e0108d68741f52d81e16bebcb2836332 (diff)
gnu: sparsehash: Don't use unstable tarball.
* gnu/packages/datastructures.scm (sparsehash)[source]: Download using git-fetch.
Diffstat (limited to 'gnu/packages/datastructures.scm')
-rw-r--r--gnu/packages/datastructures.scm11
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm
index dabb1f421e9..7eab65fd5f6 100644
--- a/gnu/packages/datastructures.scm
+++ b/gnu/packages/datastructures.scm
@@ -2,6 +2,7 @@
2;;; Copyright © 2015, 2016, 2019 Ricardo Wurmus <rekado@elephly.net> 2;;; Copyright © 2015, 2016, 2019 Ricardo Wurmus <rekado@elephly.net>
3;;; Copyright © 2016, 2017, 2019 Tobias Geerinckx-Rice <me@tobias.gr> 3;;; Copyright © 2016, 2017, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
4;;; Copyright © 2018 Meiyo Peng <meiyo.peng@gmail.com> 4;;; Copyright © 2018 Meiyo Peng <meiyo.peng@gmail.com>
5;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
5;;; 6;;;
6;;; This file is part of GNU Guix. 7;;; This file is part of GNU Guix.
7;;; 8;;;
@@ -80,12 +81,14 @@ library.")
80 (name "sparsehash") 81 (name "sparsehash")
81 (version "2.0.3") 82 (version "2.0.3")
82 (source (origin 83 (source (origin
83 (method url-fetch) 84 (method git-fetch)
84 (uri (string-append "https://github.com/sparsehash/sparsehash/" 85 (uri (git-reference
85 "archive/sparsehash-" version ".tar.gz")) 86 (url "https://github.com/sparsehash/sparsehash.git")
87 (commit (string-append name "-" version))))
88 (file-name (git-file-name name version))
86 (sha256 89 (sha256
87 (base32 90 (base32
88 "133szz0ldwch0kd91l0sa57qsnl020njn622szd9cxrjqyjqds85")))) 91 "0m3f0cnpnpf6aak52wn8xbrrdw8p0yhq8csgc8nlvf9zp8c402na"))))
89 (build-system gnu-build-system) 92 (build-system gnu-build-system)
90 (synopsis "Memory-efficient hashtable implementations") 93 (synopsis "Memory-efficient hashtable implementations")
91 (description 94 (description