diff options
author | David Craven <david@craven.ch> | 2016-08-01 19:00:19 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-08-13 14:07:46 +0200 |
commit | 864c25f469ee3ada4bedc7aad8bede50d1bda035 (patch) | |
tree | 61c50caf3de26fd0243f4705990048585e0ce253 /gnu | |
parent | 208094b49a297c178e9b5eef41edd0d9d273ea5e (diff) | |
download | guix-864c25f469ee3ada4bedc7aad8bede50d1bda035.tar.gz guix-864c25f469ee3ada4bedc7aad8bede50d1bda035.zip |
gnu: kde-frameworks: Add networkmanager-qt.
* gnu/packages/kde-frameworks (networkmanager-qt): New variable.
Co-authored-by: Hartmut Goebel <h.goebel@crazy-compilers.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index f38d5f1927..96bdd957d6 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -30,6 +30,7 @@ #:use-module (gnu packages freedesktop) #:use-module (gnu packages gettext) #:use-module (gnu packages glib) + #:use-module (gnu packages gnome) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages qt) @@ -853,6 +854,42 @@ information available for your modem devices, like signal, location and messages.") (license license:lgpl2.1+))) +(define-public networkmanager-qt + (package + (name "networkmanager-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 + "11wy0ds0hqbba900ggkcxjfqc9n65xlzc3h1zv9433nn5d75v6fy")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("dbus" ,dbus) + ("pkg-config" ,pkg-config))) + (inputs + `(("network-manager", network-manager) + ("qtbase" ,qtbase))) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* _ + (setenv "DBUS_FATAL_WARNINGS" "0") + (zero? (system* "dbus-launch" "ctest" "."))))))) + (home-page "https://community.kde.org/Frameworks") + (synopsis "Qt wrapper for NetworkManager DBus API") + (description "NetworkManagerQt provides access to all NetworkManager +features exposed on DBus. It allows you to manage your connections and control +your network devices and also provides a library for parsing connection settings +which are used in DBus communication.") + (license license:lgpl2.1+))) + (define-public oxygen-icons (package (name "oxygen-icons") |