me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-lsp-metals.

* gnu/packages/emacs-xyz.scm (emacs-lsp-metals): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Stephen Webber 2022-02-26 19:36:27 -06:00 committed by Nicolas Goaziou
parent e2d26ed061
commit 05786d6299
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 22 additions and 0 deletions

View File

@ -24627,6 +24627,28 @@ files in Elisp.")
(description "Emacs Java IDE using Eclipse JDT Language Server.")
(license license:gpl3+)))
(define-public emacs-lsp-metals
(package
(name "emacs-lsp-metals")
(version "1.2.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/emacs-lsp/lsp-metals")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0ca5xq1l3lscx36pcdnpy2axgyikjrl18naqr140kr1y500sy37s"))))
(build-system emacs-build-system)
(propagated-inputs
(list emacs-dap-mode emacs-lsp-treemacs emacs-scala-mode))
(home-page "https://github.com/emacs-lsp/lsp-metals")
(synopsis "Scala support for LSP mode")
(description "This package is an Emacs Scala IDE using LSP mode to connect
to Metals.")
(license license:gpl3+)))
(define-public emacs-lsp-ui
(package
(name "emacs-lsp-ui")