guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add emacs-lsp-treemacs.


From: guix-commits
Subject: 01/03: gnu: Add emacs-lsp-treemacs.
Date: Wed, 17 Feb 2021 13:18:26 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit d9dd91034716ed5656628085cc1e6dea98b783cb
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Wed Feb 17 19:15:42 2021 +0100

    gnu: Add emacs-lsp-treemacs.
    
    * gnu/packages/emacs-xyz.scm (emacs-lsp-treemacs): New variable.
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0a786b3..0fa1d6e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -21581,6 +21581,30 @@ integration with other popular Emacs packages like 
Company, Flycheck, and
 Projectile.")
     (license license:gpl3+)))
 
+(define-public emacs-lsp-treemacs
+  (package
+    (name "emacs-lsp-treemacs")
+    (version "0.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/emacs-lsp/lsp-treemacs";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1z9cb7i546pbzvxii6lsj31jq8m70xrzscphl5z71vh93sydyhkb"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-lsp-mode" ,emacs-lsp-mode)
+       ("emacs-treemacs" ,emacs-treemacs)))
+    (home-page "https://github.com/emacs-lsp/lsp-treemacs";)
+    (synopsis "Integration between LSP mode and treemacs")
+    (description
+     "This package provides integration between LSP mode and treemacs,
+and implementation of treeview controls using treemacs as a tree renderer.")
+    (license license:gpl3+)))
+
 (define-public emacs-pfuture
   (package
     (name "emacs-pfuture")



reply via email to

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