gnu: Add emacs-neotree.

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

Signed-off-by: Alex Kost <alezost@gmail.com>
This commit is contained in:
ng0 2016-08-10 12:14:22 +00:00 committed by Alex Kost
parent e4eb213473
commit e08ca4b966
No known key found for this signature in database
GPG key ID: 82460C082A0EE98F

View file

@ -2941,3 +2941,22 @@ (define-public emacs-writegood-mode
in English as you type. It primarily detects \"weasel words\" and abuse of in English as you type. It primarily detects \"weasel words\" and abuse of
passive voice.") passive voice.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-neotree
(package
(name "emacs-neotree")
(version "0.2.1")
(home-page "https://github.com/jaypei/emacs-neotree")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/jaypei/" name
"/archive/v" version ".tar.gz"))
(sha256
(base32
"0cr37pdkwjgfijfws5bjskfh1rq9rfngxblcj6v5383vpmn83q7s"))
(file-name (string-append name "-" version))))
(build-system emacs-build-system)
(synopsis "Folder tree view for Emacs")
(description "This Emacs package provides a folder tree view.")
(license license:gpl3+)))