gnu: bamtools: Fetch sources from git.
* gnu/packages/bioinformatics.scm (bamtools)[source]: Fetch from git.
This commit is contained in:
parent
21335fdbec
commit
8e58319c45
|
@ -262,14 +262,14 @@ instance, it implements several methods to assess contig-wise read coverage.")
|
||||||
(name "bamtools")
|
(name "bamtools")
|
||||||
(version "2.5.1")
|
(version "2.5.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/pezmaster31/bamtools/archive/v"
|
(url "https://github.com/pezmaster31/bamtools.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
|
||||||
"1z3kg24qrwq13a88n9d86izngrar4fll7gr6phddb2faw75pdgaa"))))
|
"0nfb2ypcx9959xnbz6wxh6py3xfizgmg8nrknxl95c507m9hmq8b"))))
|
||||||
(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