guix-commits
[Top][All Lists]
Advanced

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

05/05: gnu: Add emacs-tide.


From: Ludovic Courtès
Subject: 05/05: gnu: Add emacs-tide.
Date: Mon, 9 Jul 2018 11:21:13 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 19db14caf710b3e497bdca4361cff829d34722ae
Author: Mathieu Lirzin <address@hidden>
Date:   Sun Jul 8 18:56:12 2018 +0200

    gnu: Add emacs-tide.
    
    * gnu/packges/emacs.scm (emacs-tide): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/emacs.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index b195b2c..c6c7a1d 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -4235,6 +4235,46 @@ with @code{font-lock-mode} or 
@code{global-font-lock-mode}), automatic
 indentation and filling of comments and C preprocessor fontification.")
     (license license:gpl3+)))
 
+(define-public emacs-tide
+  (package
+    (name "emacs-tide")
+    (version "2.8.3.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://github.com/ananthakumaran/tide";
+                                  "/archive/v" version ".tar.gz"))
+              (sha256
+               (base32
+                "1k0kzqiv1hfs0kqm37947snzhrsmand3i9chvm6a2r5lb8v9q47y"))
+              (file-name (string-append name "-" version ".tar.gz"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-dash" ,emacs-dash)
+       ("emacs-s" ,emacs-s)
+       ("emacs-flycheck" ,flycheck)
+       ("emacs-typescript-mode" ,emacs-typescript-mode)))
+    (home-page "https://github.com/ananthakumaran/tide";)
+    (synopsis "Typescript IDE for Emacs")
+    (description
+     "Tide is an Interactive Development Environment (IDE) for Emacs which
+provides the following features:
+
address@hidden
address@hidden ElDoc
address@hidden Auto complete
address@hidden Flycheck
address@hidden Jump to definition, Jump to type definition
address@hidden Find occurrences
address@hidden Rename symbol
address@hidden Imenu
address@hidden Compile On Save
address@hidden Highlight Identifiers
address@hidden Code Fixes
address@hidden Code Refactor
address@hidden Organize Imports
address@hidden itemize")
+    (license license:gpl3+)))
+
 (define-public emacs-markdown-mode
   (package
     (name "emacs-markdown-mode")



reply via email to

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