diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-06 16:26:37 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:12 +0800 |
commit | b07afb5f5398ea0716c076734e8bcd5c7626b803 (patch) | |
tree | e78862511c98fb26a3333d5121214478e91ef2e0 /gnu/packages/kde-systemtools.scm | |
parent | 691c945ebebbe90a360aae09858a842327416986 (diff) | |
download | guix-b07afb5f5398ea0716c076734e8bcd5c7626b803.tar.gz guix-b07afb5f5398ea0716c076734e8bcd5c7626b803.zip |
gnu: dolphin-plugins: Update to 24.05.2.
* gnu/packages/kde-systemtools.scm (dolphin-plugins): Update to 24.05.2.
[inputs]: Remove qtbase-5; add ktextwidgets, and qt5compat.
[arguments]: Set #:qtbase to qtbase.
Change-Id: I8e0cecbf241b13c575820f167575a5066e8b3183
Diffstat (limited to 'gnu/packages/kde-systemtools.scm')
-rw-r--r-- | gnu/packages/kde-systemtools.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/kde-systemtools.scm b/gnu/packages/kde-systemtools.scm index e36dbcfe0e..7a959b9d80 100644 --- a/gnu/packages/kde-systemtools.scm +++ b/gnu/packages/kde-systemtools.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2022 Brendan Tildesley <mail@brendan.scot> ;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com> -;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> +;;; Copyright © 2023, 2024 Zheng Junjie <873216071@qq.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -105,14 +105,14 @@ The main features of Dolphin are: (define-public dolphin-plugins (package (name "dolphin-plugins") - (version "23.04.3") + (version "24.05.2") (source (origin (method url-fetch) (uri (string-append "mirror://kde/stable/release-service/" version "/src/dolphin-plugins-" version ".tar.xz")) (sha256 - (base32 "0h1b559icj5g3xrx5697a9rncpdcmsjg774c6m36ild56bwc048v")))) + (base32 "08xyjjwkcr08ncc4xrj65c44iya4byvf1xhnwjg21i7zxls51zir")))) (build-system qt-build-system) (native-inputs (list extra-cmake-modules)) @@ -121,10 +121,12 @@ The main features of Dolphin are: ki18n kio ktexteditor + ktextwidgets ksyntaxhighlighting kxmlgui breeze-icons ;; default icon set - qtbase-5)) + qt5compat)) + (arguments (list #:qtbase qtbase)) (home-page "https://www.kde.org/") (synopsis "VCS-Plugins for Dolphin") (description "This package contains plugins that offer integration in |