gnu: rocksdb: Don't use unstable tarball.
* gnu/packages/databases.scm (rocksdb)[source]: Use GIT-FETCH.
This commit is contained in:
parent
3bd83e6db2
commit
8dd3665883
|
@ -990,13 +990,14 @@ types are supported, as is encryption.")
|
||||||
(name "rocksdb")
|
(name "rocksdb")
|
||||||
(version "5.12.4")
|
(version "5.12.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/facebook/rocksdb"
|
(uri (git-reference
|
||||||
"/archive/v" version ".tar.gz"))
|
(url "https://github.com/facebook/rocksdb")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1jcwgsjhk4hdfr2wf549blkgb89vwcdb5i2ahhqs6zf3mm20i3bf"))
|
"0islyg33hr52gqhcgvv58gmgzxw12w3175mhf2mli5w60lx8f8hi"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
|
|
Loading…
Reference in New Issue