mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: emacs-websocket: Update to 1.12.
* gnu/packages/emacs-xyz.scm (emacs-websocket): Update to 1.12. [source]: Use ELPA repository instead of GitHub.
This commit is contained in:
parent
51b25847b7
commit
35f9af5f7d
1 changed files with 10 additions and 19 deletions
|
@ -11791,31 +11791,22 @@ (define-public emacs-pubmed
|
|||
(define-public emacs-websocket
|
||||
(package
|
||||
(name "emacs-websocket")
|
||||
(version "1.10")
|
||||
(version "1.12")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ahyatt/emacs-websocket.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://elpa.gnu.org/packages/"
|
||||
"websocket-" version ".tar"))
|
||||
(sha256
|
||||
(base32
|
||||
"1dgrf7na6r6mmkknphzshlbd5fnzisg0qn0j7vfpa38wgsymaq52"))))
|
||||
(base32 "0ap4z80c6pzpb69wrx0hsvwzignxmd2b9xy974by9gf5xm2wpa8w"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
`(#:tests? #t
|
||||
;; TODO: also enable websocket-functional-test.el
|
||||
#:test-command '("emacs" "--batch"
|
||||
"-l" "websocket-test.el"
|
||||
"-f" "ert-run-tests-batch-and-exit")))
|
||||
(home-page "https://elpa.gnu.org/packages/websocket.html")
|
||||
(synopsis "Emacs WebSocket client and server")
|
||||
(description "This is an Elisp library for WebSocket clients to talk to
|
||||
WebSocket servers, and for WebSocket servers to accept connections from
|
||||
WebSocket clients. This library is designed to be used by other library
|
||||
writers, to write applications that use WebSockets, and is not useful by
|
||||
itself.")
|
||||
(description
|
||||
"This is an Elisp library for WebSocket clients to talk to WebSocket
|
||||
servers, and for WebSocket servers to accept connections from WebSocket
|
||||
clients. This library is designed to be used by other library writers, to
|
||||
write applications that use WebSockets, and is not useful by itself.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-oauth2
|
||||
|
|
Loading…
Reference in a new issue