diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2020-05-17 21:05:18 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2020-05-17 21:05:18 +0300 |
| commit | caf23c4e3ca6ccf1bda854f5b1700d9b97493c94 (patch) | |
| tree | 38b530118fc146fda129215592a80eecef4cbff5 | |
| parent | gnu: Add emacs-ytel. (diff) | |
| download | guix-wigust-caf23c4e3ca6ccf1bda854f5b1700d9b97493c94.tar.gz | |
gnu: Add emacs-dashboard-with-agenda-reverse.
* guix/wigust/packages/emacs.scm (emacs-dashboard-with-agenda-reverse): New variable.
| -rw-r--r-- | guix/wigust/packages/emacs.scm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/guix/wigust/packages/emacs.scm b/guix/wigust/packages/emacs.scm index 6982f0d..48c4caa 100644 --- a/guix/wigust/packages/emacs.scm +++ b/guix/wigust/packages/emacs.scm @@ -1457,3 +1457,18 @@ and manipulated by user-defined functions to do various things such as: - playing them in some video player - download them") (license license:gpl3+)))) + +(define-public emacs-dashboard-with-agenda-reverse + (let ((commit "dbb6eb420a6b1909fe02c5eaeebfd17ea64297f3")) + (package + (inherit emacs-dashboard) + (name "emacs-dashboard-with-agenda-reverse") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://cgit.duckdns.org/git/emacs/emacs-dashboard") + (commit commit))) + (file-name (git-file-name name (package-version emacs-dashboard))) + (sha256 + (base32 + "1svnsg8lh4v39wkkgc250qa3lcknma17mgd080vf12641r9d847n"))))))) |
