mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: ngs-sdk: Fetch sources from git.
* gnu/packages/bioinformatics.scm (ngs-sdk)[source]: Fetch from git.
This commit is contained in:
parent
6a7d9ee39f
commit
4031e7f1ec
1 changed files with 9 additions and 10 deletions
|
@ -5237,16 +5237,15 @@ (define-public ngs-sdk
|
||||||
(package
|
(package
|
||||||
(name "ngs-sdk")
|
(name "ngs-sdk")
|
||||||
(version "1.3.0")
|
(version "1.3.0")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method git-fetch)
|
||||||
(method url-fetch)
|
(uri (git-reference
|
||||||
(uri
|
(url "https://github.com/ncbi/ngs.git")
|
||||||
(string-append "https://github.com/ncbi/ngs/archive/"
|
(commit version)))
|
||||||
version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(sha256
|
||||||
(sha256
|
(base32
|
||||||
(base32
|
"1l8p81azb9p6nsdfai0hvyai33z6nsgy7hj30arh9b5kb6m443dx"))))
|
||||||
"1wiyf4c6nm2j87pv015cbi0qny5byf3pbvcw3likifz5dl56ag40"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-build? #f ; not supported
|
`(#:parallel-build? #f ; not supported
|
||||||
|
|
Loading…
Reference in a new issue