diff options
author | Petr Hodina <phodina@protonmail.com> | 2022-03-25 11:37:17 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-11-21 22:01:13 +0100 |
commit | 0d53223c814e33bd5b45bf15907953e36e97066a (patch) | |
tree | c6cefbcab8fa58c71b3e2bce4d817800dffaadea | |
parent | 28ce8094e231629ae53c2bedbf133656f415186c (diff) | |
download | guix-0d53223c814e33bd5b45bf15907953e36e97066a.tar.gz guix-0d53223c814e33bd5b45bf15907953e36e97066a.zip |
gnu: Add plasma-mobile-settings.
* gnu/pacakges/kde-plasma.scm (plasma-mobile-settings): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org>
-rw-r--r-- | gnu/packages/kde-plasma.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index f0cef617a5..6799bbba64 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -1829,6 +1829,34 @@ connections.") customizable platform for mobile devices.") (license (list license:gpl3+ license:lgpl2.1+)))) +(define-public plasma-mobile-settings + (package + (name "plasma-mobile-settings") + (version "22.02") + (source (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/plasma-mobile/" version + "/plasma-settings-" version ".tar.xz")) + (sha256 + (base32 + "0b7lj3r9z9cz2vr0h15sqqxdaa7m07hsk8i2p8nf4a3yh02ywsxy")))) + (build-system cmake-build-system) + (native-inputs (list extra-cmake-modules pkg-config)) + (inputs (list qtbase-5 + qtdeclarative-5 + kio + modemmanager-qt + networkmanager-qt + ki18n + plasma-framework + kdeclarative + kdbusaddons)) + (home-page "https://plasma-mobile.org/") + (synopsis "Settings application for Plasma Mobile") + (description + "This package provides Settings application for Plasma Mobile.") + (license license:gpl2+))) + (define-public plasma-pa (package (name "plasma-pa") |