From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45720) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1elN14-0003mU-02 for guix-patches@gnu.org; Mon, 12 Feb 2018 17:56:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1elN10-0000yW-3i for guix-patches@gnu.org; Mon, 12 Feb 2018 17:56:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:60502) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1elN10-0000xZ-0J for guix-patches@gnu.org; Mon, 12 Feb 2018 17:56:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1elN0z-00057E-OL for guix-patches@gnu.org; Mon, 12 Feb 2018 17:56:01 -0500 Subject: [bug#30439] [PATCH] gnu: Add qqc2-desktop-style. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44810) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1elN0J-0003TA-NN for guix-patches@gnu.org; Mon, 12 Feb 2018 17:55:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1elN0F-00081x-Qx for guix-patches@gnu.org; Mon, 12 Feb 2018 17:55:19 -0500 Received: from mail-out.m-online.net ([212.18.0.10]:34593) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1elN0F-0007zg-6z for guix-patches@gnu.org; Mon, 12 Feb 2018 17:55:15 -0500 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3zgLbj43NSz1qsVk for ; Mon, 12 Feb 2018 23:55:13 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 3zgLbj3xtQz1s7bb for ; Mon, 12 Feb 2018 23:55:13 +0100 (CET) Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id tavFfnJbMocR for ; Mon, 12 Feb 2018 23:55:12 +0100 (CET) Received: from hermia.goebel-consult.de (ppp-212-114-232-16.dynamic.mnet-online.de [212.114.232.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS for ; Mon, 12 Feb 2018 23:55:12 +0100 (CET) Received: from thisbe.fritz.box (unknown [192.168.110.24]) by hermia.goebel-consult.de (Postfix) with ESMTP id 2CD7E60589 for ; Mon, 12 Feb 2018 23:55:12 +0100 (CET) From: Hartmut Goebel Date: Mon, 12 Feb 2018 23:55:11 +0100 Message-Id: <20180212225511.9403-1-h.goebel@crazy-compilers.com> 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: 30439@debbugs.gnu.org * gnu/packages/kde-frameworks.scm (qqc2-desktop-style): New variable. --- gnu/packages/kde-frameworks.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index d5e3c796e..1b43b66ae 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1275,6 +1275,38 @@ which are used in DBus communication.") provides uniform access to generation of barcodes with data.") (license license:lgpl2.1+))) +(define-public qqc2-desktop-style + (package + (name "qqc2-desktop-style") + (version "5.42.0") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://kde/stable/frameworks/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1arlfhcshfs11pgf87jzjgln1p711zlx0v0q014740mbzb9g5wnk")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("pkg-config" ,pkg-config))) + (inputs + `(("kauth" ,kauth) + ("kconfigwidgets" ,kconfigwidgets) ;; optional + ("kcoreaddons" ,kcoreaddons) + ("kiconthemes" ,kiconthemes) ;; optional + ("kirigami" ,kirigami) + ("qtbase" ,qtbase) + ("qtdeclarative" ,qtdeclarative))) + (home-page "https://community.kde.org/Frameworks") + (synopsis "QtQuickControls2 style that integrates with the desktop") + (description "This is a style for QtQuicControls2 which is using QWidget's +QStyle to paint the controls in order to give it a native look and feel. +") + (license (list license:gpl3+ license:lgpl2.1+)))) + (define-public solid (package (name "solid") -- 2.13.6