gnu: Add emacs-npm-mode.

* gnu/packages/emacs.scm (emacs-npm-mode): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 18:58:01 +03:00
parent a3a876c2a7
commit 8d907999a9
No known key found for this signature in database
GPG key ID: 7246E11C69B79569

View file

@ -8549,3 +8549,23 @@ (define-public emacs-org-mind-map
(description
"This package creates Graphviz directed graphs from Org files.")
(license license:gpl3+))))
(define-public emacs-npm-mode
(package
(name "emacs-npm-mode")
(version "0.6.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/mojochao/npm-mode/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1kq1ww22dwf8c2i2b4z2ldbbmnihj65kb7n5vzvwkch9h4hxpqh5"))))
(build-system emacs-build-system)
(home-page "https://github.com/mojochao/npm-mode")
(synopsis "Minor mode for working with @code{npm} projects")
(description
"@code{npm-mode} provides a minor mode to work with @code{npm} projects.")
(license license:gpl3+)))