gnu: java-htsjdk: Fetch sources from git.
* gnu/packages/bioinformatics.scm (java-htsjdk)[source]: Fetch from git.
This commit is contained in:
parent
57be690d91
commit
b8a6230df3
|
@ -3117,14 +3117,14 @@ from high-throughput sequencing assays.")
|
||||||
(name "java-htsjdk")
|
(name "java-htsjdk")
|
||||||
(version "2.3.0") ; last version without build dependency on gradle
|
(version "2.3.0") ; last version without build dependency on gradle
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/samtools/htsjdk/archive/"
|
(url "https://github.com/samtools/htsjdk.git")
|
||||||
version ".tar.gz"))
|
(commit version)))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1ibhzzxsfc38nqyk9r8zqj6blfc1kh26iirypd4q6n90hs2m6nyq"))
|
"1b178ixcabanm834ydjl3jiakpyxdmki32hqfv2abrzn3rcwa28i"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
;; Delete pre-built binaries
|
;; Delete pre-built binaries
|
||||||
|
|
Loading…
Reference in New Issue