diff options
| author | Sughosha <sughosha@disroot.org> | 2026-03-03 21:57:26 +0530 |
|---|---|---|
| committer | Sughosha <sughosha@disroot.org> | 2026-03-16 07:44:09 +0530 |
| commit | 937fb5cfffaaf11d669b389108b52d9ad79bb640 (patch) | |
| tree | d7bf38c388df03715834a16c68f92c05853446c9 /gnu/packages | |
| parent | 6eef98e264508b86aa1a1c6ff3baeb64281eb1e0 (diff) | |
gnu: kiconthemes: Update to 6.23.0.
* gnu/packages/kde-frameworks.scm (kiconthemes): Update to 6.23.0.
[build-system]: Switch to qt-build-system.
[inputs]: Reorder; remove qtbase; add qtwayland.
[arguments]<#:qtbase>: Set to qtbase.
<#:phases>: In 'check-setup' phase, do not set QT_QPA_PLATFORM variable.
Change-Id: Ib475ffc8a9cd924d0d3ff21cd213f434d5f72558
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/kde-frameworks.scm | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 74f5ec39943..039b2ce221e 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -3537,7 +3537,7 @@ window does not need focus for them to be activated.") (define-public kiconthemes (package (name "kiconthemes") - (version "6.22.0") + (version "6.23.0") (source (origin (method url-fetch) (uri (string-append @@ -3546,28 +3546,29 @@ window does not need focus for them to be activated.") name "-" version ".tar.xz")) (sha256 (base32 - "1j1w1gl0c6jcv6lqnc2gwmxlq1dg71mfqd8pvj97vzvia606hhc1")))) - (build-system cmake-build-system) + "0zh1m4n52zfwxlx0lz040sldl54hdf9mhl8ypij31vszz2xgrvvn")))) + (build-system qt-build-system) (native-inputs (list extra-cmake-modules qttools shared-mime-info)) (inputs - (list libxkbcommon + (list breeze-icons karchive kauth kcodecs kcolorscheme - kcoreaddons kconfig kconfigwidgets + kcoreaddons ki18n kitemviews kwidgetsaddons - qtbase + libxkbcommon qtdeclarative qtsvg - breeze-icons)) + qtwayland)) (arguments - (list #:phases + (list #:qtbase qtbase + #:phases #~(modify-phases %standard-phases (add-after 'unpack 'enable-testing (lambda _ @@ -3575,10 +3576,8 @@ window does not need focus for them to be activated.") (("if \\(BUILD_TESTING\\)" all) (string-append all "\n enable_testing()"))))) (add-before 'check 'check-setup - (lambda* (#:key inputs #:allow-other-keys) - (setenv "HOME" (getcwd)) - ;; make Qt render "offscreen", required for tests - (setenv "QT_QPA_PLATFORM" "offscreen")))))) + (lambda _ + (setenv "HOME" (getcwd))))))) (home-page "https://community.kde.org/Frameworks") (synopsis "Icon GUI utilities") (description "This library contains classes to improve the handling of icons |
