This is an automated email from the git hooks/post-receive script.

ieure pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 0fd4bfd8df gnu: Add emacs-consult-mu.
0fd4bfd8df is described below

commit 0fd4bfd8df352725e2ae066be0f357b7a86f1ac7
Author: Cayetano Santos <[email protected]>
AuthorDate: Tue Feb 18 09:24:31 2025 +0100

    gnu: Add emacs-consult-mu.
    
    * gnu/packages/emacs-xyz.scm (emacs-consult-mu): New variable.
    
    Change-Id: Ifb6b868faa1dc7e03b872486b69f0cf528ed61c7
    Signed-off-by: Ian Eure <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0f4df160b0..e53f657599 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13586,6 +13586,37 @@ or to a project or bookmarked directory.  The 
minibuffer prompt will be
 replaced with the directory you choose.")
     (license license:gpl3+)))
 
+(define-public emacs-consult-mu
+  (let ((commit "e1dc63674b924698b30a9ecc0400a05864711c85")
+        (revision "0"))
+    (package
+      (name "emacs-consult-mu")
+      (version (git-version "1.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/armindarvish/consult-mu/";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "17ad0901xbg2vrgdvpp67kia2r7gqsvbkqqb44f4pwakr7zwiz2y"))))
+      (build-system emacs-build-system)
+      (arguments
+       '(#:phases (modify-phases %standard-phases
+                    (add-after 'unpack 'move-source-files
+                      (lambda _
+                        (let ((el-files (find-files "./extras" ".*\\.el$")))
+                          (for-each (lambda (f)
+                                      (rename-file f
+                                                   (basename f))) 
el-files)))))))
+      (propagated-inputs (list emacs-consult emacs-embark mu))
+      (home-page "https://github.com/armindarvish/consult-mu/";)
+      (synopsis "Search mu4e emails with Consult")
+      (description "This package provides a query interface for mu4e using
+Consult.")
+      (license license:gpl3+))))
+
 (define-public emacs-consult-notmuch
   (package
     (name "emacs-consult-notmuch")

Reply via email to