mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: emacs-eglot: Update to 1.10.
* gnu/packages/emacs-xyz.scm (emacs-eglot): Update to 1.10. [source]: Use GNU ELPA as upstream since the project as been merged into Emacs and the GitHub repository is no longer up-to-date. [arguments]: Remove tests, which do not exist in the tarball. [propagated-inputs]: Add EMACS-EXTERNAL-COMPLETION, EMACS-SEQ, EMACS-XREF.
This commit is contained in:
parent
71bc9d195a
commit
1d893c3a97
1 changed files with 11 additions and 15 deletions
|
@ -17050,27 +17050,23 @@ (define-public emacs-commander
|
|||
(define-public emacs-eglot
|
||||
(package
|
||||
(name "emacs-eglot")
|
||||
(version "1.9")
|
||||
(version "1.10")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/joaotavora/eglot")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://elpa.gnu.org/packages/eglot-" version
|
||||
".tar"))
|
||||
(sha256
|
||||
(base32
|
||||
"030837yak24ymjawsfr1hgyfdjy3k30ld1ca0cgnrxhgxc7p8hwv"))))
|
||||
"0iw1jnfsjd2yq73ic3cld8m51wyxdwn3kjv9ala28krvsvb4h3y4"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #t
|
||||
#:test-command #~(list "emacs" "--batch"
|
||||
"-l" "eglot.el"
|
||||
"-l" "eglot-tests.el"
|
||||
"-f" "ert-run-tests-batch-and-exit")))
|
||||
(propagated-inputs
|
||||
(list emacs-eldoc emacs-jsonrpc emacs-project))
|
||||
(list emacs-external-completion
|
||||
emacs-eldoc
|
||||
emacs-jsonrpc
|
||||
emacs-project
|
||||
emacs-seq
|
||||
emacs-xref))
|
||||
(home-page "https://github.com/joaotavora/eglot")
|
||||
(synopsis "Client for Language Server Protocol (LSP) servers")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue