mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: Add emacs-npm-mode.
* gnu/packages/emacs.scm (emacs-npm-mode): New public variable.
This commit is contained in:
parent
a3a876c2a7
commit
8d907999a9
1 changed files with 20 additions and 0 deletions
|
@ -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+)))
|
||||
|
|
Loading…
Reference in a new issue