guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

73/178: gnu: Add plasma-activities.


From: guix-commits
Subject: 73/178: gnu: Add plasma-activities.
Date: Mon, 17 Jun 2024 12:13:25 -0400 (EDT)

z572 pushed a commit to branch kde-team
in repository guix.

commit a16718f5d4254a2f05deee77269e76f5c7fe8570
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Thu May 2 17:21:21 2024 +0800

    gnu: Add plasma-activities.
    
    * gnu/packages/kde-frameworks.scm (plasma-activities): New variable.
    (kactivities): Inherit above.
    
    Change-Id: Ibb76ee3db058a17c3347bf090a58dc0c001e4f49
---
 gnu/packages/kde-frameworks.scm | 39 ++++++++++++++++++++++++++++++++++++---
 1 file changed, 36 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 1c2b40b19b..8df3ddce51 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2308,8 +2308,42 @@ decode RAW picture files.")
 ;; Tier 2 frameworks additionally depend on tier 1 frameworks, but still have
 ;; easily manageable dependencies.
 
+(define-public plasma-activities
+  (package
+    (name "plasma-activities")
+    (version "6.0.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://kde/stable/plasma/"
+                                  version "/" name "-"
+                                  version ".tar.xz"))
+              (sha256
+               (base32
+                "0vfzg6z5jn8hlg56y83yhiyf4544vzsb666psdpa0sqr36kw6f68"))))
+    (build-system qt-build-system)
+    (native-inputs
+     (list extra-cmake-modules))
+    (inputs
+     (list boost
+           kconfig-6
+           kcoreaddons-6
+           kwindowsystem-6
+           qtdeclarative
+           solid-6))
+    (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
   (package
+    (inherit plasma-activities)
     (name "kactivities")
     (version "5.114.0")
     (source (origin
@@ -2343,15 +2377,14 @@ decode RAW picture files.")
            qtbase-5
            qtdeclarative-5
            solid))
+    (arguments '())
     (home-page "https://community.kde.org/Frameworks";)
     (synopsis "Core components for the KDE Activity concept")
     (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+))))
+with other frameworks.")))
 
 (define-public kauth-6
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]