mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: alot: Don't use unstable tarball.
* gnu/packages/mail.scm (alot)[source]: Download using git-fetch.
This commit is contained in:
parent
ad01213837
commit
05be4e06a3
1 changed files with 6 additions and 5 deletions
|
@ -1144,16 +1144,17 @@ (define-public alot
|
||||||
(name "alot")
|
(name "alot")
|
||||||
(version "0.9.1")
|
(version "0.9.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
;; package author intends on distributing via github rather
|
;; package author intends on distributing via github rather
|
||||||
;; than pypi:
|
;; than pypi:
|
||||||
;; https://github.com/pazz/alot/issues/877#issuecomment-230173331
|
;; https://github.com/pazz/alot/issues/877#issuecomment-230173331
|
||||||
(uri (string-append "https://github.com/pazz/alot/archive/"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/pazz/alot")
|
||||||
(file-name (string-append "alot-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1r0x3n2fxi6sfq3paz8a4vn2mmyqaznj1207wa7jl0ixnjqilb7f"))))
|
"0s94m17yph1gq9f2svipb3bbwbw1s4j3zf2xkg5h91006v8286r6"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
|
Loading…
Reference in a new issue