From 9c94825f7a8614d7b39cdd05b0317ef7a410d0cd Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Wed, 27 Jan 2021 21:06:03 -0500 Subject: [PATCH] rekahsoft-gnu/packages/emacs-xyz.scm: Add emacs-mu4e-dashboard --- rekahsoft-gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/rekahsoft-gnu/packages/emacs-xyz.scm b/rekahsoft-gnu/packages/emacs-xyz.scm index 3ae4ed4..8ba55c0 100644 --- a/rekahsoft-gnu/packages/emacs-xyz.scm +++ b/rekahsoft-gnu/packages/emacs-xyz.scm @@ -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+))))