diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2025-01-13 16:55:34 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2025-01-14 19:10:55 +0800 |
commit | b9baa3f9fdfecf95bbf0ef565225ab33444366e8 (patch) | |
tree | ce820d49c67f6f271d4e30dd510a88c0452fb083 | |
parent | ec15c7ced1b0af4eea693d66ea071b50cd180646 (diff) |
gnu: lxqt-admin: Update to 2.1.0.
* gnu/packages/lxqt.scm (lxqt-admin): Update to 2.1.0.
[inputs]: Simplify. Replace polkit-qt with polkit-qt6.
Change-Id: I7aadc62b90dc3b98a50ec18c7f64f1126d50d9ac
-rw-r--r-- | gnu/packages/lxqt.scm | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index ecc1c5f89c..5ffb1c69c9 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -306,24 +306,19 @@ LXQt and the system it's running on.") (define-public lxqt-admin (package (name "lxqt-admin") - (version "1.3.0") + (version "2.1.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/lxqt/" name "/releases/download/" version "/" name "-" version ".tar.xz")) (sha256 - (base32 "1p9959rvj5kh1svv2p9dsfnf008xvrhllcccrsxnk4s8vzjhdqjp")))) + (base32 "047m08hhl8ykk2n2zr0h38f0ynq6b81v80hqrfhqfik3c20895ss")))) (build-system cmake-build-system) (inputs - (list kwindowsystem-5 - liblxqt - libqtxdg - polkit-qt - qtsvg-5 - qtx11extras)) + (list liblxqt polkit-qt6)) (native-inputs - (list lxqt-build-tools qttools-5)) + (list lxqt-build-tools)) (arguments '(#:tests? #f ; no tests #:phases |