guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

82/88: gnu: Add emacs-dashboard.


From: Oleg Pykhalov
Subject: 82/88: gnu: Add emacs-dashboard.
Date: Wed, 2 May 2018 13:21:19 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 99092bd9002da40370af48beae5a8530276a792b
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 19:13:59 2018 +0300

    gnu: Add emacs-dashboard.
    
    * gnu/packages/emacs.scm (emacs-dashboard): New public variable.
---
 gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 6c0dd5c..d71ef1f 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10078,3 +10078,27 @@ the previously visible buffer part after each scroll.")
       (description "@code{highlight-escape-sequences} provides an
 Emacs minor mode to escape sequences in code.")
       (license license:gpl3+))))
+
+(define-public emacs-dashboard
+  (package
+    (name "emacs-dashboard")
+    (version "1.2.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/rakanalh/emacs-dashboard/archive/";
+             version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1738lmbgq6gk24hcwic0qjyajr21l5xzhya4pv58dw1bhd6vxv9g"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-page-break-lines" ,emacs-page-break-lines)))
+    (arguments '(#:include '("\\.el$" "\\.txt$" "\\.png$")))
+    (home-page "https://github.com/rakanalh/emacs-dashboard";)
+    (synopsis "Startup screen extracted from Spacemacs")
+    (description "This package provides an extensible Emacs dashboard, with
+sections for bookmarks, projectil projects, org-agenda and more. ")
+    (license license:gpl3+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]