gnu: Add emacs-deft.

* gnu/packages/emacs.scm (emacs-deft): New variable.

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
This commit is contained in:
Konrad Hinsen 2018-03-16 13:10:28 +01:00 committed by Oleg Pykhalov
parent 22d628148c
commit 5d818b3557
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 20 additions and 0 deletions

View File

@ -7386,3 +7386,23 @@ inherit a login shell's environment variables. It also allows other
environment variables to be retrieved from the shell, so that Emacs will see
the same values you get in a terminal.")
(license license:gpl3+)))
(define-public emacs-deft
(package
(name "emacs-deft")
(version "0.8")
(source
(origin
(method url-fetch)
(uri (string-append "https://stable.melpa.org/packages/deft-"
version ".el"))
(sha256
(base32
"1vb9cjxskc7c0yyf9pvxy1fzypg1vrcgwnjz0m3hslinsgdyig58"))))
(build-system emacs-build-system)
(home-page "https://jblevins.org/projects/deft/")
(synopsis "Quickly browse, filter, and edit plain text notes")
(description
"Deft is an Emacs mode for quickly browsing, filtering, and editing
directories of plain text notes, inspired by Notational Velocity.")
(license license:bsd-3)))