diff options
author | Zhu Zihao <all_but_last@163.com> | 2023-03-26 17:19:27 +0800 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-03-27 16:44:11 +0100 |
commit | 8ced5fd4d671f4429ccdeb807e4d17342edfc6c0 (patch) | |
tree | ddfa6de69f253bb5710b42e4b8cf7e3d9230aa85 | |
parent | 5f9ae8904194f6d07e0b54e56df6ed03312da495 (diff) |
gnu: mu: Update to 1.10.0.
* gnu/packages/mail.scm (mu): Update to 1.10.0.
[source]: Use release tarball instead of git reference.
Signed-off-by: Christopher Baines <mail@cbaines.net>
-rw-r--r-- | gnu/packages/mail.scm | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 6ef4c6fdab..9f3dc2c97a 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1168,16 +1168,15 @@ security functionality including PGP, S/MIME, SSH, and SSL.") (define-public mu (package (name "mu") - (version "1.8.13") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/djcb/mu") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0y4f5p7pwmaj8733rjzg29038dw33057qlsbsq2wapvp24wcjymr")))) + (version "1.10.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/djcb/mu/releases/download/v" + version "/mu-" version ".tar.xz")) + (sha256 + (base32 + "0fmcxypvl77k7si5g3c0pak13hy2ilz8a6567m7p2apjr33j223z")))) (build-system meson-build-system) (native-inputs (list pkg-config |