diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-05 23:50:00 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:00 +0800 |
commit | f4cb39f21a948849078c19eca93a7932e429572d (patch) | |
tree | 3a092502b8751204d04a82c2d075d4f20c070c06 | |
parent | fa1bcd489aa164553969b5652579ef7244835842 (diff) | |
download | guix-f4cb39f21a948849078c19eca93a7932e429572d.tar.gz guix-f4cb39f21a948849078c19eca93a7932e429572d.zip |
gnu: kguiaddons: Update to 6.3.0.
* gnu/packages/kde-frameworks.scm (kguiaddons): Update to 6.3.0.
[arguments]: Set #:qtbase to qtbase.
[inputs]: Remove qtbase-5, qtwayland-5, and qtx11extras; add libxkbcommon,
and qtwayland.
Change-Id: I5aea035983536fa10bd5333323bbbc8e56b3ae8d
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 059a8cf88c..406bd587e9 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -799,7 +799,7 @@ replace the other outdated Graphviz tools.") (define-public kguiaddons (package (name "kguiaddons") - (version "5.114.0") + (version "6.3.0") (source (origin (method url-fetch) (uri (string-append @@ -808,16 +808,16 @@ replace the other outdated Graphviz tools.") name "-" version ".tar.xz")) (sha256 (base32 - "0riya9plcz9c1ndhdbsradssndshbm12705swn7vf7am17n7f947")))) + "009jvkakgb44ykz3920pj87kxh9jgbp9mdi654f77hqyq0grnlg1")))) (build-system qt-build-system) ;; TODO: Build packages for the Python bindings. Ideally this will be ;; done for all versions of python guix supports. Requires python, ;; python-sip, clang-python, libclang. Requires python-2 in all cases for ;; clang-python. - (native-inputs - (list extra-cmake-modules pkg-config)) + (native-inputs (list extra-cmake-modules pkg-config)) (inputs - (list qtbase-5 qtwayland-5 qtx11extras plasma-wayland-protocols wayland)) + (list libxkbcommon qtwayland plasma-wayland-protocols wayland)) + (arguments (list #:qtbase qtbase)) (home-page "https://community.kde.org/Frameworks") (synopsis "Utilities for graphical user interfaces") (description "The KDE GUI addons provide utilities for graphical user |