diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-10-26 15:32:29 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-10-26 16:23:24 +0200 |
commit | c70271ec4821969e5f5f46de8ee242152bec0366 (patch) | |
tree | 27adb1cec5af008e0806dd80a53cb36b1e163356 | |
parent | 39df253e2bb260e67d8ce81431a9aa3478689774 (diff) | |
download | patches-c70271ec4821969e5f5f46de8ee242152bec0366.tar patches-c70271ec4821969e5f5f46de8ee242152bec0366.tar.gz |
gnu: bioperl-minimal: Update to 1.7.0.
* gnu/packages/bioinformatics.scm (bioperl-minimal): Update to 1.7.0.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index b71cde8aba..025d2317d7 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -602,15 +602,19 @@ e.g. microbiome samples, genomes, metagenomes.") (map (compose package-transitive-target-inputs cadr) inputs)))))) (package (name "bioperl-minimal") - (version "1.6.924") + (version "1.7.0") (source (origin (method url-fetch) - (uri (string-append "mirror://cpan/authors/id/C/CJ/CJFIELDS/BioPerl-" - version ".tar.gz")) + (uri (string-append "https://github.com/bioperl/bioperl-live/" + "archive/release-" + (string-map (lambda (c) + (if (char=? c #\.) + #\- c)) version) + ".tar.gz")) (sha256 (base32 - "1l3npcvvvwjlhkna9dndpfv1hklhrgva013kw96m0n1wpd37ask1")))) + "12phgpxwgkqflkwfb9dcqg7a31dpjlfhar8wcgv0aj5ln4akfz06")))) (build-system perl-build-system) (arguments `(#:phases |