gnu: diamond: Fetch from git.
* gnu/packages/bioinformatics.scm (diamond)[source]: Fetch from git.
This commit is contained in:
parent
7a1e62ca67
commit
1c06399358
|
@ -2204,14 +2204,14 @@ accurately delineate genomic rearrangements throughout the genome.")
|
||||||
(name "diamond")
|
(name "diamond")
|
||||||
(version "0.9.22")
|
(version "0.9.22")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/bbuchfink/diamond/archive/v"
|
(url "https://github.com/bbuchfink/diamond.git")
|
||||||
version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0adp87r9ak63frdrdmrdfhsn6g0jnnyq1lr2wibvqbxcl37iir9m"))))
|
"0bky78v79g3wmdpsd706cscckgw1v09fg8vdd0z8z0d5b97aj9zl"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; no "check" target
|
'(#:tests? #f ; no "check" target
|
||||||
|
|
Loading…
Reference in New Issue