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:
parent
40f23e8413
commit
1e841bb848
1 changed files with 15 additions and 5 deletions
|
@ -16432,15 +16432,25 @@ (define-public emacs-commander
|
||||||
(define-public emacs-eglot
|
(define-public emacs-eglot
|
||||||
(package
|
(package
|
||||||
(name "emacs-eglot")
|
(name "emacs-eglot")
|
||||||
(version "1.8")
|
(version "1.9")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://elpa.gnu.org/packages/"
|
(uri (git-reference
|
||||||
"eglot-" version ".tar"))
|
(url "https://github.com/joaotavora/eglot")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1n04jnf3wwpxafrzfd02l53wf90brjc8p835f84k0n0rjxin99k5"))))
|
(base32
|
||||||
|
"1mx2b7ljwvmfl5d0w9m7i1i900198lsdx1cpi8n7wq58h5df88p9"))))
|
||||||
(build-system emacs-build-system)
|
(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
|
(propagated-inputs
|
||||||
(list emacs-eldoc emacs-jsonrpc emacs-project))
|
(list emacs-eldoc emacs-jsonrpc emacs-project))
|
||||||
(home-page "https://github.com/joaotavora/eglot")
|
(home-page "https://github.com/joaotavora/eglot")
|
||||||
|
|
Loading…
Reference in a new issue