diff options
author | David Craven <david@craven.ch> | 2016-08-07 20:54:23 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-08-30 22:38:29 +0200 |
commit | ef0f84502cc1d32184252529eda8e0c873b4d10c (patch) | |
tree | 586f4b13575dff30ed8ae5ef8dd5426cc5b1f5d2 /gnu/packages/kde-frameworks.scm | |
parent | f422ad12750f98c27f150ad42b7b5f678e21787e (diff) | |
download | guix-ef0f84502cc1d32184252529eda8e0c873b4d10c.tar guix-ef0f84502cc1d32184252529eda8e0c873b4d10c.tar.gz |
gnu: Add kded.
* gnu/packages/kde-frameworks.scm (kded): New variable.
Diffstat (limited to 'gnu/packages/kde-frameworks.scm')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index adeb9a0c67..0a049db7ef 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1785,3 +1785,36 @@ intergrate QML with KDE Frameworks specific features, and a series of QML import that offer bindings to some of the Frameworks.") ;; dual licensed (license (list license:gpl2+ license:lgpl2.1+)))) + +(define-public kded + (package + (name "kded") + (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 + "0ngpxdxb596myn5r4kjxahx195bwklq33yvgjvcbxi2clg2wccaj")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("kconfig" ,kconfig) + ("kcoreaddons" ,kcoreaddons) + ("kcrash" ,kcrash) + ("kdbusaddons" ,kdbusaddons) + ("kdoctools" ,kdoctools) + ("kinit" ,kinit) + ("kservice" ,kservice) + ("qtbase" ,qtbase))) + (home-page "https://community.kde.org/Frameworks") + (synopsis "Central daemon of KDE work spaces") + (description "KDED stands for KDE Daemon. KDED runs in the background and +performs a number of small tasks. Some of these tasks are built in, others are +started on demand.") + ;; dual licensed + (license (list license:lgpl2.0+ license:lgpl2.1+)))) |