gnu: Add emacs-dashboard.
* gnu/packages/emacs.scm (emacs-dashboard): New public variable.
This commit is contained in:
parent
cfeefca9ae
commit
99092bd900
|
@ -10078,3 +10078,27 @@ the previously visible buffer part after each scroll.")
|
||||||
(description "@code{highlight-escape-sequences} provides an
|
(description "@code{highlight-escape-sequences} provides an
|
||||||
Emacs minor mode to escape sequences in code.")
|
Emacs minor mode to escape sequences in code.")
|
||||||
(license license:gpl3+))))
|
(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+)))
|
||||||
|
|
Loading…
Reference in New Issue