mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add kactivitymanagerd.
* gnu/packages/kde-plasma.scm (kactivitymanagerd): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
ebd845c697
commit
c71f599cff
1 changed files with 31 additions and 0 deletions
|
@ -32,6 +32,7 @@ (define-module (gnu packages kde-plasma)
|
|||
#:use-module (guix build-system qt)
|
||||
#:use-module (gnu packages admin)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages boost)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages freedesktop)
|
||||
#:use-module (gnu packages glib)
|
||||
|
@ -116,6 +117,36 @@ (define-public breeze-gtk
|
|||
(license (list license:bsd-3 ;cmake/FindSass.cmake
|
||||
license:lgpl2.1+)))) ;<all other files>
|
||||
|
||||
(define-public kactivitymanagerd
|
||||
(package
|
||||
(name "kactivitymanagerd")
|
||||
(version "5.25.5")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/plasma/"
|
||||
version "/" name "-"
|
||||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0hsllhqi46n25sr27crnad053ghk3hni2w496g6d2qfmi20l3g4n"))))
|
||||
(build-system qt-build-system)
|
||||
(native-inputs (list extra-cmake-modules))
|
||||
(inputs (list boost
|
||||
kconfig
|
||||
kcoreaddons
|
||||
kwindowsystem
|
||||
kglobalaccel
|
||||
kio
|
||||
kxmlgui
|
||||
kdbusaddons
|
||||
ki18n
|
||||
kcrash))
|
||||
(synopsis "System service to manage user's activities")
|
||||
(description "This package provides components for managing the KDE Activity
|
||||
concept.")
|
||||
(home-page "https://invent.kde.org/plasma/kactivitymanagerd")
|
||||
(license (list license:gpl2 license:gpl3))))
|
||||
|
||||
(define-public kdecoration
|
||||
(package
|
||||
(name "kdecoration")
|
||||
|
|
Loading…
Reference in a new issue