From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35078) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gPZm6-0007LD-Hq for guix-patches@gnu.org; Wed, 21 Nov 2018 16:11:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gPZm3-00021K-QY for guix-patches@gnu.org; Wed, 21 Nov 2018 16:11:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:35978) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gPZm3-000217-NN for guix-patches@gnu.org; Wed, 21 Nov 2018 16:11:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gPZm3-0002S5-IZ for guix-patches@gnu.org; Wed, 21 Nov 2018 16:11:03 -0500 Subject: [bug#33459] [PATCH 4/4] gnu: Add emacs-matrix-client. Resent-Message-ID: From: Nicolas Goaziou Date: Wed, 21 Nov 2018 22:10:49 +0100 Message-Id: <20181121211049.6440-4-mail@nicolasgoaziou.fr> In-Reply-To: <20181121211049.6440-1-mail@nicolasgoaziou.fr> References: <20181121211049.6440-1-mail@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 33459@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-matrix-client): New variable. --- gnu/packages/emacs.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 5c5757505..e9e55b03e 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -12627,3 +12627,35 @@ classes like @command{}. (description "ov.el provides a simple way to manipulate overlays in Emacs.") (license license:gpl3+))) + +(define-public emacs-matrix-client + (let ((commit "3eab4c28280feff18ee1ddd7db66ada4f135cbf8")) + (package + (name "emacs-matrix-client") + (version (git-version "0.0.0" "1" commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jgkamat/matrix-client-el.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1k6721jz0m22vpb78881k087mpx8hf3s2219ic75v5mhgx355f7m")))) + (build-system emacs-build-system) + (propagated-inputs + `(("a" ,emacs-a) + ("dash" ,emacs-dash) + ("esxml" ,emacs-esxml) + ("f" ,emacs-f) + ("ht" ,emacs-ht) + ("ov" ,emacs-ov) + ("request" ,emacs-request) + ("s" ,emacs-s) + ("tracking" ,emacs-tracking))) + (home-page "https://github.com/jgkamat/matrix-client-el") + (synopsis "Matrix client for Emacs") + (description "@code{matrix-client} is a simple chat UI to Matrix.org +rooms. It also provides an API which allows Emacs to seamlessly create +RPC channels with users and other software.") + (license license:gpl3+)))) -- 2.19.1