diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-10-21 20:53:40 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-10-21 23:06:46 +0200 |
commit | 5748fe5fccef9653ed1e16f83d0fe3e889de6a26 (patch) | |
tree | c9522e7982a29099eb5df3754f94fc1f3f5ecce7 /gnu | |
parent | 4348a059e527969b55875ad33525d6023cd82201 (diff) | |
download | guix-5748fe5fccef9653ed1e16f83d0fe3e889de6a26.tar guix-5748fe5fccef9653ed1e16f83d0fe3e889de6a26.tar.gz |
gnu: discrover: Fetch from git.
* gnu/packages/bioinformatics.scm (discrover)[source]: Fetch from git.
Diffstat (limited to 'gnu')
-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 35611f7b1c..b6bd2c619a 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -2239,13 +2239,14 @@ data and settings.") (version "1.6.0") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/maaskola/discrover/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/maaskola/discrover.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 - "0rah9ja4m0rl5mldd6vag9rwrivw1zrqxssfq8qx64m7961fp68k")))) + "173fwi2vb6a5kp406hm3jj6j7v4whww796f2qcygp4rpvamh307y")))) (build-system cmake-build-system) (arguments `(#:tests? #f ; there are no tests |