From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 27/31] gnu: kde-frameworks: Add modemmanager-qt. Date: Mon, 1 Aug 2016 20:13:38 +0200 Message-ID: <20160801181342.16203-28-david@craven.ch> References: <20160801181342.16203-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36787) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bUHji-0000hO-KD for guix-devel@gnu.org; Mon, 01 Aug 2016 14:14:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bUHjg-0001LN-F9 for guix-devel@gnu.org; Mon, 01 Aug 2016 14:14:45 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:45853) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bUHjf-0000pG-7w for guix-devel@gnu.org; Mon, 01 Aug 2016 14:14:44 -0400 In-Reply-To: <20160801181342.16203-1-david@craven.ch> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org From: Hartmut Goebel * gnu/packages/kde-frameworks.scm (modemmanager-qt): New variable. Co-authored-by: David Craven --- gnu/packages/kde-frameworks.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 99e086e..7aa4d74 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -26,6 +26,7 @@ #:use-module (guix packages) #:use-module (guix utils) #:use-module (gnu packages compression) + #:use-module (gnu packages freedesktop) #:use-module (gnu packages gettext) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) @@ -712,6 +713,36 @@ lower level classes for interaction with the X Windowing System.") ;; the lgpl2.1. Some source files are under non-copyleft licenses. (license license:lgpl2.1+))) +(define-public modemmanager-qt + (package + (name "modemmanager-qt") + (version "5.24.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/frameworks/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0khz5bf84xxa8aqpzwb6x839xx6dbiadwqhyj7cvgha65fh2xinh")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("pkg-config" ,pkg-config))) + (inputs + `(("modem-manager", modem-manager) + ("qtbase" ,qtbase))) + (arguments + `(#:tests? #f)) ; FIXME: 10/10 tests fail. + (home-page "https://community.kde.org/Frameworks") + (synopsis "Qt wrapper for ModemManager DBus API") + (description "ModemManagerQt provides access to all ModemManager features +exposed on DBus. It allows you to manage modem devices and access to +information available for your modem devices, like signal, location and +messages.") + (license license:lgpl2.1+))) + (define-public oxygen-icons (package (name "oxygen-icons") -- 2.9.0