diff options
author | Liam Hupfer <liam@hpfr.net> | 2025-02-23 12:55:37 -0600 |
---|---|---|
committer | Ian Eure <ian@retrospec.tv> | 2025-03-01 09:13:11 -0800 |
commit | ca87fed4a8f7e2f2b42dec768c8bf8b845aaba37 (patch) | |
tree | d8caa2cad56b6ee83664edea135a4372c93bc9c6 | |
parent | 80dd91f957071100a3fc422eecc7db789228c178 (diff) | |
download | guix-ca87fed4a8f7e2f2b42dec768c8bf8b845aaba37.tar.gz guix-ca87fed4a8f7e2f2b42dec768c8bf8b845aaba37.zip |
gnu: Add emacs-notmuch-addr.
* gnu/packages/emacs-xyz.scm (emacs-notmuch-addr): New variable.
Change-Id: I99fffb1d5e442b667d1fbf14bcb532923395cf63
Signed-off-by: Ian Eure <ian@retrospec.tv>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ad0881d441..4e8293ff0f 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -147,7 +147,7 @@ ;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;;; Copyright © 2024 Spencer King <spencer.king@nursiapress.com> ;;; Copyright © 2024 emma thompson <bigbookofbug@proton.me> -;;; Copyright © 2024 Liam Hupfer <liam@hpfr.net> +;;; Copyright © 2024-2025 Liam Hupfer <liam@hpfr.net> ;;; Copyright © 2024 aurtzy <aurtzy@gmail.com> ;;; Copyright © 2024 Olivier Rojon <o.rojon@posteo.net> ;;; Copyright © 2024 Divya Ranjan Pattanaik <divya@subvertising.org> @@ -33691,6 +33691,29 @@ displays as you type thanks to Helm, though @command{notmuch-search} does the real search.") (license license:gpl3+))) +(define-public emacs-notmuch-addr + (package + (name "emacs-notmuch-addr") + (version "1.1.0") + (home-page "https://github.com/tarsius/notmuch-addr") + (source + (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit "7dde87a44b6576eb736cb6a3b69df6b9946c5ecc"))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xr78yw679swbl1bcwhk5k6qj1l9zr9nyl34ry2bpdryi370zkkp")))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-compat emacs-notmuch)) + (synopsis "Improved address completion for Notmuch") + (description + "A simple alternative to @code{notmuch-address}. It gives up on +persistent caching, external scripts, and backward compatibility. It uses the +improved completion API offered by Emacs 27.1 and later.") + (license license:gpl3+))) + (define-public emacs-notmuch-indicator (package (name "emacs-notmuch-indicator") |