From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59747) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1faloz-00084L-Ja for guix-patches@gnu.org; Wed, 04 Jul 2018 13:44:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1falow-0002T5-FR for guix-patches@gnu.org; Wed, 04 Jul 2018 13:44:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:39034) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1falow-0002T1-Bj for guix-patches@gnu.org; Wed, 04 Jul 2018 13:44:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1falow-0005Pi-5R for guix-patches@gnu.org; Wed, 04 Jul 2018 13:44:02 -0400 Subject: [bug#32053] [PATCH 1/2] gnu: Add libqmatrixclient. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59602) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1falo3-00081d-I7 for guix-patches@gnu.org; Wed, 04 Jul 2018 13:43:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1falo0-0001sw-D7 for guix-patches@gnu.org; Wed, 04 Jul 2018 13:43:07 -0400 Received: from [2001:19f0:5:274f:351:616f:fec3:2694] (port=56394 helo=vultr.systemreboot.net) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1falnz-0001rL-SX for guix-patches@gnu.org; Wed, 04 Jul 2018 13:43:04 -0400 From: Arun Isaac Date: Wed, 4 Jul 2018 23:12:39 +0530 Message-Id: <20180704174239.30870-1-arunisaac@systemreboot.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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: 32053@debbugs.gnu.org * gnu/packages/messaging.scm (libqmatrixclient): New variable. --- gnu/packages/messaging.scm | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 181cdecc9..a9db199f9 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2016 Andy Patterson ;;; Copyright © 2016, 2017, 2018 Clément Lassieur ;;; Copyright © 2017 Mekeor Melire -;;; Copyright © 2017 Arun Isaac +;;; Copyright © 2017, 2018 Arun Isaac ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice ;;; Copyright © 2017 Theodoros Foradis ;;; Copyright © 2017 Rutger Helling @@ -1644,4 +1644,28 @@ c-toxcore and ncurses. It provides audio calls, sound and desktop notifications, and Python scripting support.") (license license:gpl3+))) +(define-public libqmatrixclient + (package + (name "libqmatrixclient") + (version "0.3.0.2") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/QMatrixClient/libqmatrixclient/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0yl7lw0s2z98xkxbklkb3i8xcd9af9qayl1zxl070d8ykl6ayqy3")))) + (build-system cmake-build-system) + (inputs + `(("qt" ,qt))) + (arguments + `(#:tests? #f)) ; No tests + (home-page "https://matrix.org/docs/projects/sdk/libqmatrixclient.html") + (synopsis "Qt5 Matrix client library") + (description "libqmatrixclient is a Qt5 library to write clients for the +Matrix protocol. Quaternion is the reference client implementation. +Quaternion and libqmatrixclient together form the QMatrixClient project.") + (license license:lgpl2.1+))) ;;; messaging.scm ends here -- 2.15.1