gnu: libgff: Fetch sources from git.

* gnu/packages/bioinformatics.scm (libgff)[source]: Fetch from git.
This commit is contained in:
Ricardo Wurmus 2018-11-07 21:37:43 +01:00
parent 4257c10ad2
commit 55698df260
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 6 additions and 6 deletions

View File

@ -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")