mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: bioperl-minimal: Don't use unstable tarball.
* gnu/packages/bioinformatics.scm (bioperl-minimal)[source]: Download using git-fetch.
This commit is contained in:
parent
46b0136e09
commit
8b1fd3cafd
1 changed files with 9 additions and 8 deletions
|
@ -983,16 +983,17 @@ (define-public bioperl-minimal
|
||||||
(version "1.7.0")
|
(version "1.7.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/bioperl/bioperl-live/"
|
(uri (git-reference
|
||||||
"archive/release-"
|
(url "https://github.com/bioperl/bioperl-live")
|
||||||
(string-map (lambda (c)
|
(commit (string-append "release-"
|
||||||
(if (char=? c #\.)
|
(string-map (lambda (c)
|
||||||
#\- c)) version)
|
(if (char=? c #\.)
|
||||||
".tar.gz"))
|
#\- c)) version)))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"12phgpxwgkqflkwfb9dcqg7a31dpjlfhar8wcgv0aj5ln4akfz06"))))
|
"0wl8yvzcls59pwwk6m8ahy87pwg6nnibzy5cldbvmcwg2x2w7783"))))
|
||||||
(build-system perl-build-system)
|
(build-system perl-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
|
Loading…
Reference in a new issue