From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:50180) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i7cpb-00065w-Ko for guix-patches@gnu.org; Tue, 10 Sep 2019 05:53:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i7cpa-0000s1-Fj for guix-patches@gnu.org; Tue, 10 Sep 2019 05:53:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60376) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i7cpa-0000rx-Cm for guix-patches@gnu.org; Tue, 10 Sep 2019 05:53:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i7cpa-0006kl-Bn for guix-patches@gnu.org; Tue, 10 Sep 2019 05:53:02 -0400 Subject: [bug#37367] [PATCH 2/3] gnu: Add kqtquickcharts. Resent-Message-ID: From: Efraim Flashner Date: Tue, 10 Sep 2019 12:52:30 +0300 Message-Id: <20190910095231.24326-2-efraim@flashner.co.il> In-Reply-To: <20190910095231.24326-1-efraim@flashner.co.il> References: <20190910095008.23860-1-efraim@flashner.co.il> <20190910095231.24326-1-efraim@flashner.co.il> 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: 37367@debbugs.gnu.org * gnu/packages/kde.scm (kqtquickcharts): New variable. --- gnu/packages/kde.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index f2261f7f98..c80da7d796 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -602,3 +602,27 @@ communicate with each other. Here's a few things KDE Connect can do: @end enumerate") (properties `((upstream-name . "kdeconnect-kde"))) (license (list license:gpl2 license:gpl3)))) ; dual licensed + +(define-public kqtquickcharts + (package + (name "kqtquickcharts") + (version "19.08.1") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/applications/" + version "/src/kqtquickcharts-" version ".tar.xz")) + (sha256 + (base32 + "1j3rivvh4sa94lsd0hi4xfvcikl05zrqd7634wxyaxs718ais6dg")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("qtbase" ,qtbase) + ("qtdeclarative" ,qtdeclarative))) + (home-page "https://phabricator.kde.org/source/kqtquickcharts/") + (synopsis "Interactive charts for Qt Quick") + (description + "A QtQuick plugin to render beautiful and interactive charts.") + (license license:lgpl2.1+))) -- 2.23.0