diff options
author | Cayetano Santos <[email protected]> | 2025-02-18 09:24:31 +0100 |
---|---|---|
committer | Ian Eure <[email protected]> | 2025-03-10 20:44:18 -0700 |
commit | 0fd4bfd8df352725e2ae066be0f357b7a86f1ac7 (patch) | |
tree | ebaf58dc82f92afe4a7a0dd47fca9dfe70f2f689 | |
parent | ed2447f8fe724d6f2086443b06fe65d0f5fd9482 (diff) |
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]>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 31 |
1 files changed, 31 insertions, 0 deletions
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") |