guix-commits
[Top][All Lists]
Advanced

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

109/143: gnu: Add plasma-mobile.


From: guix-commits
Subject: 109/143: gnu: Add plasma-mobile.
Date: Mon, 21 Nov 2022 16:10:52 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 28ce8094e231629ae53c2bedbf133656f415186c
Author: Petr Hodina <phodina@protonmail.com>
AuthorDate: Fri Mar 25 11:36:00 2022 +0100

    gnu: Add plasma-mobile.
    
    * gnu/packages/kde-plasma.scm (plasma-mobile): New variable.
    
    Signed-off-by: Marius Bakke <marius@gnu.org>
---
 gnu/packages/kde-plasma.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 1bb961cf76..f0cef617a5 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -1789,6 +1789,46 @@ integration of Qt applications when running on a KDE 
Plasma workspace.")
 connections.")
     (license (list license:lgpl2.1 license:lgpl3))))
 
+(define-public plasma-mobile
+  (package
+    (name "plasma-mobile")
+    (version "5.24.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://download.kde.org/stable/plasma/";
+                                  version "/plasma-mobile-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1bwmy7xvd8wmh0snqqjh9jjgawib8ks2g30w48sqxwhplhf3da58"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list #:phases #~(modify-phases %standard-phases
+                        (add-after 'install 'wrap-script
+                          (lambda* (#:key inputs outputs #:allow-other-keys)
+                            (wrap-program (string-append #$output
+                                                         "/bin/kwinwrapper")
+                                          `("PATH" ":" prefix
+                                            (,(string-append #$plasma-framework
+                                                             "/bin")))))))))
+    (native-inputs (list extra-cmake-modules pkg-config qttools))
+    (inputs (list bash-minimal
+                  kdeclarative
+                  ki18n
+                  kio
+                  knotifications
+                  kwayland
+                  kwin
+                  modemmanager-qt
+                  networkmanager-qt
+                  plasma-framework
+                  qtbase-5))
+    (home-page "https://plasma-mobile.org/";)
+    (synopsis
+     "General UI components for Plasma Phone including shell, containment and 
applets")
+    (description "This package provides user-friendly, privacy-enabling and
+customizable platform for mobile devices.")
+    (license (list license:gpl3+ license:lgpl2.1+))))
+
 (define-public plasma-pa
   (package
     (name "plasma-pa")



reply via email to

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