gnu: emacs-eglot: Update to 1.9.

* gnu/packages/emacs-xyz.scm (emacs-eglot): Update to 1.9.
[source]<origin>: Switch URL to GitHub.
[arguments]: Activate tests.
This commit is contained in:
Nicolas Goaziou 2022-10-10 23:42:08 +02:00
parent 40f23e8413
commit 1e841bb848
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -16432,15 +16432,25 @@ (define-public emacs-commander
(define-public emacs-eglot
(package
(name "emacs-eglot")
(version "1.8")
(version "1.9")
(source
(origin
(method url-fetch)
(uri (string-append "https://elpa.gnu.org/packages/"
"eglot-" version ".tar"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/joaotavora/eglot")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1n04jnf3wwpxafrzfd02l53wf90brjc8p835f84k0n0rjxin99k5"))))
(base32
"1mx2b7ljwvmfl5d0w9m7i1i900198lsdx1cpi8n7wq58h5df88p9"))))
(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))
(home-page "https://github.com/joaotavora/eglot")