gnu: bioperl-minimal: Don't use unstable tarball.

* gnu/packages/bioinformatics.scm (bioperl-minimal)[source]: Download
using git-fetch.
This commit is contained in:
Efraim Flashner 2019-11-24 23:48:44 +02:00
parent 46b0136e09
commit 8b1fd3cafd
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -983,16 +983,17 @@ (define-public bioperl-minimal
(version "1.7.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/bioperl/bioperl-live/"
"archive/release-"
(string-map (lambda (c)
(if (char=? c #\.)
#\- c)) version)
".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/bioperl/bioperl-live")
(commit (string-append "release-"
(string-map (lambda (c)
(if (char=? c #\.)
#\- c)) version)))))
(file-name (git-file-name name version))
(sha256
(base32
"12phgpxwgkqflkwfb9dcqg7a31dpjlfhar8wcgv0aj5ln4akfz06"))))
"0wl8yvzcls59pwwk6m8ahy87pwg6nnibzy5cldbvmcwg2x2w7783"))))
(build-system perl-build-system)
(arguments
`(#:phases