diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-07 22:24:34 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-07 23:17:34 +0100 |
commit | 4715d4af171bed48c60dd6d40ea2d4a0688d4f8a (patch) | |
tree | c1cbe80c0c7ebf7f349de2eee5fe02f318e1725c /gnu/packages/bioinformatics.scm | |
parent | 5e242b02c37e8c5189a52136a32067bca0767082 (diff) | |
download | guix-4715d4af171bed48c60dd6d40ea2d4a0688d4f8a.tar.gz guix-4715d4af171bed48c60dd6d40ea2d4a0688d4f8a.zip |
gnu: raxml: Fetch sources from git.
* gnu/packages/bioinformatics.scm (raxml)[source]: Fetch from git.
Diffstat (limited to 'gnu/packages/bioinformatics.scm')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 9217a58154..fa8d873b49 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -4856,15 +4856,14 @@ extremely diverse sets of genomes.") (version "8.2.10") (source (origin - (method url-fetch) - (uri - (string-append - "https://github.com/stamatak/standard-RAxML/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/stamatak/standard-RAxML.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "13s7aspfdcfr6asynwdg1x6vznys6pzap5f8wsffbnnwpkkg9ya8")))) + "1crf5xwchzlals3ypgb9gkm3yzllfp6bn571abdjc21q8c4x7v7k")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; There are no tests. |