diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-04-02 00:45:16 -0400 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-04-02 11:58:08 +0200 |
commit | 6800c79701abfc90eecc1d8fc4b217d5adf6263a (patch) | |
tree | 02970f07de076957e29c4c549e3b155f0c49e38c /gnu/packages/mail.scm | |
parent | 800a7dd59e39f6717231353c27984d080e261f63 (diff) | |
download | guix-6800c79701abfc90eecc1d8fc4b217d5adf6263a.tar guix-6800c79701abfc90eecc1d8fc4b217d5adf6263a.tar.gz |
gnu: notmuch: Update to 0.24.1.
* gnu/packages/mail.scm (notmuch, python-notmuch, python2-notmuch): Update to
0.24.1.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index e36f884eac..8f087fb0e8 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -21,6 +21,7 @@ ;;; Copyright © 2016 John Darrington <jmd@gnu.org> ;;; Copyright © 2016 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be> +;;; Copyright © 2017 Kyle Meyer <kyle@kyleam.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -663,14 +664,14 @@ invoking @command{notifymuch} from the post-new hook.") (define-public notmuch (package (name "notmuch") - (version "0.24") + (version "0.24.1") (source (origin (method url-fetch) (uri (string-append "https://notmuchmail.org/releases/notmuch-" version ".tar.gz")) (sha256 (base32 - "1z3m9knsdmchvfjzjhjf2cmdc9yahmvbvzn46wsrsrihfvv4rr7p")))) + "18rw0rim6zxhnr2nggial029x4raaxqcgf9klfbdhv89qvi7s4gs")))) (build-system gnu-build-system) (arguments '(#:make-flags (list "V=1") ; Verbose test output. |