diff options
author | David Craven <david@craven.ch> | 2016-06-12 20:52:18 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-08-13 14:07:46 +0200 |
commit | 9fd502cee54d98dd5d9ba5fbb2ad7ad7f4f936d8 (patch) | |
tree | 1bd53a2f35db4beefd8fba53f98fac232c8805f0 /gnu | |
parent | 864c25f469ee3ada4bedc7aad8bede50d1bda035 (diff) | |
download | patches-9fd502cee54d98dd5d9ba5fbb2ad7ad7f4f936d8.tar patches-9fd502cee54d98dd5d9ba5fbb2ad7ad7f4f936d8.tar.gz |
gnu: kde-frameworks: Add solid.
* gnu/packages/kde-frameworks.scm (solid): New variable.
Co-authored-by: Hartmut Goebel <h.goebel@crazy-compilers.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 96bdd957d6..c0914e39d6 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -26,11 +26,13 @@ #:use-module (guix packages) #:use-module (guix utils) #:use-module (gnu packages admin) + #:use-module (gnu packages bison) #:use-module (gnu packages compression) #:use-module (gnu packages freedesktop) #:use-module (gnu packages gettext) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) + #:use-module (gnu packages linux) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages qt) @@ -912,3 +914,31 @@ which are used in DBus communication.") (synopsis "Oxygen provides the standard icon theme for the KDE desktop") (description "Oxygen icon theme for the KDE desktop") (license license:lgpl3+))) + +(define-public solid + (package + (name "solid") + (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 + "00wvsxcnvhdx7ijzpcz5wny2ypkxr1drdpr4yvawgpwa678l1107")))) + (build-system cmake-build-system) + (native-inputs + `(("bison" ,bison) + ("extra-cmake-modules" ,extra-cmake-modules) + ("qttools" ,qttools))) + (inputs + `(("qtbase" ,qtbase) + ("udev" ,eudev))) + (home-page "https://community.kde.org/Frameworks") + (synopsis "Desktop hardware abstraction") + (description "Solid is a device integration framework. It provides a way of +querying and interacting with hardware independently of the underlying operating +system.") + (license license:lgpl2.1+))) |