gnu: libgff: Fetch sources from git.
* gnu/packages/bioinformatics.scm (libgff)[source]: Fetch from git.
This commit is contained in:
parent
4257c10ad2
commit
55698df260
|
@ -11925,14 +11925,14 @@ accurate as existing quantification tools.")
|
||||||
(name "libgff")
|
(name "libgff")
|
||||||
(version "1.0")
|
(version "1.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/Kingsford-Group/"
|
(url "https://github.com/Kingsford-Group/libgff.git")
|
||||||
"libgff/archive/v" 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
|
||||||
"0vc4nxyhlm6g9vvmx5l4lfs5pnvixsv1hiiy4kddf2y3p6jna8ls"))))
|
"0n6vfjnq7a2mianipscbshrvbncss8z4zkgkbjw754p9043nfkps"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments `(#:tests? #f)) ; no tests included
|
(arguments `(#:tests? #f)) ; no tests included
|
||||||
(home-page "https://github.com/Kingsford-Group/libgff")
|
(home-page "https://github.com/Kingsford-Group/libgff")
|
||||||
|
|
Loading…
Reference in New Issue