https://codeberg.org/jao/consult-notmuch.git@a5133b9e1f19 -> https://codeberg.org/jao/consult-notmuch.git@4138855cddee https://git.notmuchmail.org/git/notmuch@63413a556345 -> https://git.notmuchmail.org/git/notmuch@bd243b65a970 https://git.sr.ht/~tarsius/ol-notmuch@126fb446d8fa -> https://git.sr.ht/~tarsius/ol-notmuch@1a53d6c70751 jeremy-compostella/org-msg@599e8b056c -> jeremy-compostella/org-msg@60e22e4463 org-mime/org-mime@eb21c02ba8 -> org-mime/org-mime@cf96f585c6 wanderlust/apel@4e3269b6e7 -> wanderlust/apel@6947dc4605 wanderlust/wanderlust@6e189fc944 -> wanderlust/wanderlust@e3cd5e3945 xzz53/mu4e-alert@91f0657c5b -> xzz53/mu4e-alert@b34d0ea7b7 Fix: #6360 Close: #6377
31 lines
1.4 KiB
EmacsLisp
31 lines
1.4 KiB
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; email/notmuch/packages.el
|
|
|
|
(package! notmuch
|
|
:recipe (:pre-build
|
|
(with-temp-file "emacs/notmuch-version.el"
|
|
(insert-file-contents "emacs/notmuch-version.el.tmpl")
|
|
(re-search-forward "%VERSION%")
|
|
(replace-match
|
|
(format "\"%s+%s~%.7s\""
|
|
(with-temp-buffer (insert-file-contents "version.txt")
|
|
(string-trim (buffer-string)))
|
|
(save-match-data
|
|
(let ((desc (doom-call-process "git" "describe" "--abbrev=7" "--match" "[0-9.]*")))
|
|
(if (zerop (car desc))
|
|
(car (last (split-string (cdr desc) "-") 2))
|
|
"??")))
|
|
(cdr (doom-call-process "git" "rev-parse" "HEAD")))
|
|
t t)))
|
|
:pin "bd243b65a9709bfd61ba80e80cc41ae3a23ea524")
|
|
|
|
(when (featurep! +org)
|
|
(package! org-mime :pin "cf96f585c68ad14751a3f73d937cbfcb890171b9"))
|
|
(when (featurep! :lang org)
|
|
(package! ol-notmuch :pin "1a53d6c707514784cabf33d865b577bf77f45913"))
|
|
(when (featurep! :completion ivy)
|
|
(package! counsel-notmuch :pin "a4a1562935e4180c42524c51609d1283e9be0688"))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-notmuch :pin "97a01497e079a7b6505987e9feba6b603bbec288"))
|
|
(when (featurep! :completion vertico)
|
|
(package! consult-notmuch :pin "4138855cddee0ef126cff6a5fc5ca9c49fd2682d"))
|