diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-07 21:41:20 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-07 21:41:56 +0100 |
commit | 2b773a9273882b270306154223067a56e1e89e38 (patch) | |
tree | d94fded5c07288aad9f36f4b45f351e330269ceb /gnu/packages/bioinformatics.scm | |
parent | 55698df26013bff8646f8c7f1ca135102dad3cb8 (diff) | |
download | guix-2b773a9273882b270306154223067a56e1e89e38.tar.gz guix-2b773a9273882b270306154223067a56e1e89e38.zip |
gnu: sra-tools: Fetch sources from git.
* gnu/packages/bioinformatics.scm (sra-tools)[source]: Fetch from git.
Diffstat (limited to 'gnu/packages/bioinformatics.scm')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 4682d26279..0bcfcd4dcf 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -5654,14 +5654,14 @@ sequence itself can be retrieved from these databases.") (version "2.8.2-1") (source (origin - (method url-fetch) - (uri - (string-append "https://github.com/ncbi/sra-tools/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/ncbi/sra-tools.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 - "1camsijmvv2s45mb4iyf44ghl4gkd4rl0viphpcgl3ccchy32a0g")))) + "12ln0pk8yajhmmj9xsfwa1qgv5m05ji40jsg17wdcls62zz6fwrk")))) (build-system gnu-build-system) (arguments `(#:parallel-build? #f ; not supported |