me
/
guix
Archived
1
0
Fork 0

gnu: mutt: Upgrade to 1.5.23.

* gnu/packages/mail.scm (mutt): Upgrade to 1.5.23.  Add bitbucket
  source URL and try it first.
master
Mark H Weaver 2014-04-02 04:16:11 -04:00
parent 3b9af0f37b
commit fb9c3acc6c
1 changed files with 8 additions and 4 deletions

View File

@ -138,14 +138,18 @@ aliasing facilities to work just as they would on normal mail.")
(define-public mutt
(package
(name "mutt")
(version "1.5.21")
(version "1.5.23")
(source (origin
(method url-fetch)
(uri (string-append "ftp://ftp.mutt.org/mutt/devel/mutt-"
version ".tar.gz"))
(uri (list ;; Temporarily put bitbucket first, because
;; ftp.mutt.org has been down for a while.
(string-append "https://bitbucket.org/mutt/mutt/downloads/mutt-"
version ".tar.gz")
(string-append "ftp://ftp.mutt.org/mutt/devel/mutt-"
version ".tar.gz")))
(sha256
(base32
"1864cwz240gh0zy56fb47qqzwyf6ghg01037rb4p2kqgimpg6h91"))))
"0dzx4qk50pjfsb6cs5jahng96a52k12f7pm0sc78iqdrawg71w1s"))))
(build-system gnu-build-system)
(inputs
`(("cyrus-sasl" ,cyrus-sasl)