emacs-xyz.scm: Add emacs-org-timeline

This commit is contained in:
Collin J. Doering 2021-04-25 08:22:33 -04:00
parent cb43297b5d
commit 8ea4abdfc7
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 23 additions and 0 deletions

View File

@ -728,3 +728,26 @@ See perspective.el on github: https://github.com/nex3/perspective-el
org-mode. These links can then be organized to form a org-mode powered mu4e
dashboard!")
(license license:gpl3+))))
(define-public emacs-org-timeline
(package
(name "emacs-org-timeline")
(version "0.4.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Fuco1/org-timeline")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"106603835m3dy3bzjiasq2w574faxnn5kb72gr0y0mdkd0iwh8qa"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-dash" ,emacs-dash)
("emacs-org" ,emacs-org)))
(home-page "https://github.com/Fuco1/org-timeline")
(synopsis "Add graphical view of agenda to agenda buffer")
(description
"Add graphical view of agenda to agenda buffer.")
(license license:gpl3+)))