https://git.notmuchmail.org/git/notmuch@09f2ad8e8533 -> https://git.notmuchmail.org/git/notmuch@b6f144abe1f5 jeremy-compostella/org-msg@7b1dfb96d5 -> jeremy-compostella/org-msg@055de4abf6 org-mime/org-mime@cc00afcf02 -> org-mime/org-mime@d368bd4119 tarsius/ol-notmuch@ee3646627e -> tarsius/ol-notmuch@781c3518a5 wanderlust/flim@2cf5a78910 -> wanderlust/flim@80b8121f05 wanderlust/semi@7d8df0ef2f -> wanderlust/semi@9370961ddc wanderlust/wanderlust@77662986fd -> wanderlust/wanderlust@8369b2d517 xzz53/mu4e-alert@3c9af8c799 -> xzz53/mu4e-alert@6beda20fc6
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 "b6f144abe1f5aa3519240cf52f4cb9907fefcd0e")
|
|
|
|
(when (modulep! +org)
|
|
(package! org-mime :pin "d368bd4119bfcf2997a6a23bbf5f41e043164d29"))
|
|
(when (modulep! :lang org)
|
|
(package! ol-notmuch :pin "781c3518a537da2a8b5e8a4424f9441df463a147"))
|
|
(when (modulep! :completion ivy)
|
|
(package! counsel-notmuch :pin "a4a1562935e4180c42524c51609d1283e9be0688"))
|
|
(when (modulep! :completion helm)
|
|
(package! helm-notmuch :pin "97a01497e079a7b6505987e9feba6b603bbec288"))
|
|
(when (modulep! :completion vertico)
|
|
(package! consult-notmuch :pin "d0d4129d45ccceddaeeaa3631eb42d5dd09a758b"))
|