guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

21/88: gnu: Add emacs-npm-mode.


From: Oleg Pykhalov
Subject: 21/88: gnu: Add emacs-npm-mode.
Date: Wed, 2 May 2018 13:21:07 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 8d907999a978d8eb35fb50477e4473184c1c2299
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 18:58:01 2018 +0300

    gnu: Add emacs-npm-mode.
    
    * gnu/packages/emacs.scm (emacs-npm-mode): New public variable.
---
 gnu/packages/emacs.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index aa991d6..a3fc9f6 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -8549,3 +8549,23 @@ timestamps and date-time format strings library for 
Emacs.")
       (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+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]