This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 0e32aab570 gnu: Add flatpak-kcm.
0e32aab570 is described below

commit 0e32aab5704bc0a1e37d65d21b50b53c713632aa
Author: Sughosha <[email protected]>
AuthorDate: Sat Oct 25 16:28:45 2025 +0530

    gnu: Add flatpak-kcm.
    
    * gnu/packages/kde-plasma.scm (flatpak-kcm): New variable.
    
    Change-Id: I93ea4641a69492ff477197a39e43accf92a63b82
---
 gnu/packages/kde-plasma.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 6d3451bccb..3ec68605f1 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -500,6 +500,43 @@ games, and tools.")
     (home-page "https://invent.kde.org/plasma/drkonqi";)
     (license license:gpl2+)))
 
+(define-public flatpak-kcm
+  (package
+    (name "flatpak-kcm")
+    (version "6.5.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/plasma/" version
+                           "/flatpak-kcm-" version ".tar.xz"))
+       (sha256
+        (base32 "0i8qlmvf33c48khyw50dfgkbj9c5idzbqf7n2bxzv9jvrx8snfnk"))))
+    (build-system qt-build-system)
+    (arguments
+     (list #:qtbase qtbase))
+    (native-inputs
+     (list extra-cmake-modules pkg-config))
+    (inputs
+     (list flatpak
+           kcmutils
+           kconfig
+           kcoreaddons
+           ki18n
+           kitemmodels
+           kservice
+           libostree     ;required by flatpak
+           qtdeclarative
+           qtsvg))
+    (home-page "https://invent.kde.org/plasma/flatpak-kcm";)
+    (synopsis "Flatpak permission management KCM")
+    (description "This package provides a KCModule to configure permissions for
+portal interactions.  It also allows changing @code{flatpak} settings via the
+subsumed Flatpak KCM.
+
+Note: Some permissions don't make sense to show for non-sandboxed apps as they
+are only roxying @code{dbus}.")
+    (license license:gpl3+)))
+
 (define-public kactivitymanagerd
   (package
     (name "kactivitymanagerd")

Reply via email to