guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

17/18: gnu: mu: Update to 1.10.0.


From: guix-commits
Subject: 17/18: gnu: mu: Update to 1.10.0.
Date: Mon, 27 Mar 2023 11:45:43 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit 8ced5fd4d671f4429ccdeb807e4d17342edfc6c0
Author: Zhu Zihao <all_but_last@163.com>
AuthorDate: Sun Mar 26 17:19:27 2023 +0800

    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>
---
 gnu/packages/mail.scm | 19 +++++++++----------
 1 file 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]