diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-06 10:33:53 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:05 +0800 |
commit | 8be05dd7d7d7e34d6bb4c383fe311d24d1726e9b (patch) | |
tree | e460a50101c6e1147f1fae5b56b1dbab47486360 | |
parent | 1c26ad5cf6c5ca58bfa85f89939d7dfeb6988845 (diff) | |
download | guix-8be05dd7d7d7e34d6bb4c383fe311d24d1726e9b.tar guix-8be05dd7d7d7e34d6bb4c383fe311d24d1726e9b.tar.gz |
gnu: Add plasma-activities.
* gnu/packages/kde-frameworks.scm (plasma-activities): New variable.
Change-Id: Ic0143585247ef2cf394c889e202f93729c07250e
-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 c766e2d3aa..40bccf0199 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -2222,6 +2222,39 @@ maintaining an index of the contents of your files.") ;; dual licensed (license (list license:gpl2+ license:lgpl2.1+)))) +(define-public plasma-activities + (package + (name "plasma-activities") + (version "6.1.2") + (source (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/plasma/" + version "/plasma-activities-" + version ".tar.xz")) + (sha256 + (base32 + "1nx6363l85f0c4f3l189cjfz4rbap2cq292v2136agdppl4gq0iy")))) + (build-system qt-build-system) + (native-inputs + (list extra-cmake-modules)) + (inputs + (list boost + kconfig + kcoreaddons + kwindowsystem + qtdeclarative + solid)) + (arguments (list #:qtbase qtbase)) + (home-page "https://invent.kde.org/plasma/plasma-activities") + (synopsis "Core components for the KDE Activity System") + (description "KActivities provides the infrastructure needed to manage a +user's activities, allowing them to switch between tasks, and for applications +to update their state to match the user's current activity. This includes a +daemon, a library for interacting with that daemon, and plugins for integration +with other frameworks.") + ;; triple licensed + (license (list license:gpl2+ license:lgpl2.0+ license:lgpl2.1+)))) + (define-public kactivities-stats (package (name "kactivities-stats") |