From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33568) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1edJOc-0000ti-HL for guix-patches@gnu.org; Sun, 21 Jan 2018 12:27:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1edJOZ-0006Jv-87 for guix-patches@gnu.org; Sun, 21 Jan 2018 12:27:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:57621) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1edJOZ-0006Jd-4r for guix-patches@gnu.org; Sun, 21 Jan 2018 12:27:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1edJOY-0001uH-V7 for guix-patches@gnu.org; Sun, 21 Jan 2018 12:27:02 -0500 Subject: [bug#30194] [PATCH 3/6] gnu: Add emacs-websocket. Resent-Message-ID: From: Ricardo Wurmus Date: Sun, 21 Jan 2018 18:25:36 +0100 Message-Id: <20180121172539.19408-3-rekado@elephly.net> In-Reply-To: <20180121172539.19408-1-rekado@elephly.net> References: <20180121172539.19408-1-rekado@elephly.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30194@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/emacs.scm (emacs-websocket): New variable. --- gnu/packages/emacs.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index f1ff29cd6..82bdacbb7 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -6511,6 +6511,28 @@ well as Github-style emojis like @code{:smile:}. It provides a minor mode @code{emojify-mode} to enable the display of emojis in a buffer.") (license license:gpl3+))) +(define-public emacs-websocket + (package + (name "emacs-websocket") + (version "1.8") + (source + (origin + (method url-fetch) + (uri (string-append "https://elpa.gnu.org/packages/websocket-" + version ".tar")) + (sha256 + (base32 + "0dcxmnnm8z7cvsc7nkb822a1g6w03klp7cijjnfq0pz84p3w9cd9")))) + (build-system emacs-build-system) + (home-page "http://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.") + (license license:gpl3+))) + (define-public emacs-bash-completion (package (name "emacs-bash-completion") -- 2.15.0