diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-08 09:30:59 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-08 09:30:59 +0100 |
commit | b17333414ff75db6e909533b383171721d60702e (patch) | |
tree | 4ba8b8ee22019976170f26897f3a745a2902876f | |
parent | 87408854ecd4e89961539d7091c72fd53ca59a20 (diff) | |
download | guix-b17333414ff75db6e909533b383171721d60702e.tar guix-b17333414ff75db6e909533b383171721d60702e.tar.gz |
gnu: plink-ng: Fetch sources from git.
* gnu/packages/bioinformatics.scm (plink-ng)[source]: Fetch from git.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 924b671712..057151be05 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -5469,12 +5469,13 @@ subsequent visualization, annotation and storage of results.") (version "1.90b4") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/chrchang/plink-ng/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/chrchang/plink-ng.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "09ixrds009aczjswxr2alcb774mksq5g0v78dgjjn1h4dky0kf9a")))) + (base32 "02npdwgkpfkdnhw819rhj5kw02a5k5m90b14zq9zzya4hyg929c0")))) (build-system gnu-build-system) (arguments '(#:tests? #f ;no "check" target |