rekahsoft-gnu/packages/emacs-xyz.scm: Add emacs-mu4e-dashboard

This commit is contained in:
Collin J. Doering 2021-01-27 21:06:03 -05:00
parent d193b883a8
commit 9c94825f7a
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 27 additions and 0 deletions

View File

@ -28,6 +28,7 @@
#:use-module (gnu packages emacs)
#:use-module (gnu packages emacs-xyz)
#:use-module (gnu packages curl)
#:use-module (gnu packages mail)
#:use-module (srfi srfi-1)
#:use-module (ice-9 match))
@ -701,3 +702,29 @@ See perspective.el on github: https://github.com/nex3/perspective-el
(description
"Web Application to Visualize the Org-Roam Database.")
(license license:gpl3+)))
(define-public emacs-mu4e-dashboard
(let ((commit "7956bf9631abfecdf4fbff168aa92064dc4886fb")
(revision "1"))
(package
(name "emacs-mu4e-dashboard")
(version (git-version "0.0.0" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rougier/mu4e-dashboard")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0fkbkdc269l4sbpvbnmqq02vl80dz80l3d2zq6ax6dwhlvxk2blp"))))
(build-system emacs-build-system)
(propagated-inputs
`(("mu" ,mu)))
(home-page "https://github.com/rougier/mu4e-dashboard")
(synopsis "Provides mu4e org-mode link type for building org powered dashboards")
(description
"Provides a new mu4e org link type that allows for mu4e queries from
org-mode. These links can then be organized to form a org-mode powered mu4e
dashboard!")
(license license:gpl3+))))