diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2025-01-11 21:35:20 +0800 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-03-11 23:34:27 +0800 |
commit | ceedd754608a80dada4c796851822583e12eeab8 (patch) | |
tree | 57664d0272c03768d8bb8485d5932ec3df608faa | |
parent | 46f1ead085f1a2eacfe5cd5752475c40bb0b92cb (diff) |
gnu: nm-tray: Update to 0.5.1.
* gnu/packages/networking.scm (nm-tray): Update to 0.5.1.
[arguments]: Set #:qtbase to qtbase.
[inputs]: Remove qtbase-5 and networkmanager-qt5; add networkmanager-qt.
[native-inputs]: Remove qttools-5; add qttools.
Change-Id: I3b4c710ed789f63f3ce934d462d7d52cb8a2b53d
-rw-r--r-- | gnu/packages/networking.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 673b77585d..b993a0f28a 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -1021,7 +1021,7 @@ tasks.") (define-public nm-tray (package (name "nm-tray") - (version "0.5.0") + (version "0.5.1") (home-page "https://github.com/palinek/nm-tray") (source (origin (method git-fetch) @@ -1030,13 +1030,14 @@ tasks.") (commit version))) (sha256 (base32 - "14i8sl0hrnyidlvqnxza0v4018f7p685ksn8419i2w7f9yqpvpiw")) + "1myg7sxiszllh5agg6pi5y9zagl83v8cb6l0s5f873xrv9pi3iyr")) (file-name (git-file-name name version)))) (build-system qt-build-system) (arguments - (list #:tests? #f)) ;There are no tests upstream - (inputs (list qtbase-5 qtwayland-5 networkmanager-qt5)) - (native-inputs (list qttools-5 pkg-config)) + (list #:qtbase qtbase + #:tests? #f)) ;There are no tests upstream + (inputs (list networkmanager-qt)) + (native-inputs (list qttools pkg-config)) (synopsis "NetworkManager front-end with information icon residing in system tray") (description |