diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-06 14:26:13 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:09 +0800 |
commit | 939be6e220320774d2504c78e9eeb8fb38268043 (patch) | |
tree | 6001367c33c8aa0932617fc9e8a10da90089da35 /gnu/packages/kde-plasma.scm | |
parent | 2dc743f772e7e3f56caad44aaa4fec3169b8368f (diff) | |
download | guix-939be6e220320774d2504c78e9eeb8fb38268043.tar guix-939be6e220320774d2504c78e9eeb8fb38268043.tar.gz |
gnu: plasma-nm: Update to 6.1.2.
* gnu/packages/kde-plasma.scm (plasma-nm): Update to 6.1.2.
[arguments]: Set #:qtbase to qtbase.
[inputs]: Remove plasma-framework, qca, and qtdeclarative-5; add libplasma,
qca-qt6, ksvg, qcoro-qt6, and qtdeclarative.
Change-Id: I99e2564cc98815dc1c13f39e81cba80f9bfce2f1
Diffstat (limited to 'gnu/packages/kde-plasma.scm')
-rw-r--r-- | gnu/packages/kde-plasma.scm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index c5f975fbed..25ee50faa9 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -2135,7 +2135,7 @@ integration of Qt applications when running on a KDE Plasma workspace.") (define-public plasma-nm (package (name "plasma-nm") - (version "5.27.7") + (version "6.1.2") (source (origin (method url-fetch) (uri (string-append "mirror://kde/stable/plasma/" @@ -2143,10 +2143,11 @@ integration of Qt applications when running on a KDE Plasma workspace.") ".tar.xz")) (sha256 (base32 - "1w9zclih2mh8gqwahsmbbm0nrg1b6gcr5w2w02szlw30iq8k92j8")))) + "02148q5707cck0qix2c3k7npp9kblnq5h79xvb99rq45sbwc51pr")))) (build-system qt-build-system) (arguments - (list #:phases #~(modify-phases %standard-phases + (list #:qtbase qtbase + #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? @@ -2164,18 +2165,20 @@ integration of Qt applications when running on a KDE Plasma workspace.") networkmanager-qt knotifications kirigami - plasma-framework + libplasma modemmanager-qt network-manager - qca + qca-qt6 kservice solid prison kwallet kwidgetsaddons kwindowsystem + ksvg + qcoro-qt6 openconnect - qtdeclarative-5)) + qtdeclarative)) (synopsis "Plasma applet for managing network connections") (description "This package provides Plasma applet for managing network connections.") |