gnu: Add emacs-lsp-treemacs.

* gnu/packages/emacs-xyz.scm (emacs-lsp-treemacs): New variable.
This commit is contained in:
Nicolas Goaziou 2021-02-17 19:15:42 +01:00
parent adfbba4669
commit d9dd910347
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -21581,6 +21581,30 @@ (define-public emacs-lsp-mode
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")