diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-06 00:47:27 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:02 +0800 |
commit | e31a7de2f42b475b0094a38a68927238bf921483 (patch) | |
tree | 15ee12e032ace471de62546fb434800d22de3683 /gnu | |
parent | 1711eb85ac64d7b597470b7af9a4234a1a44fcdf (diff) | |
download | guix-e31a7de2f42b475b0094a38a68927238bf921483.tar.gz guix-e31a7de2f42b475b0094a38a68927238bf921483.zip |
gnu: kcrash: Update to 6.3.0.
* gnu/packages/kde-frameworks.scm (kcrash): Update to 6.3.0.
[inputs]: Remove qtbase-5 and qtx11extras.
[arguments]: Set #:qtbase to qtbase.
Change-Id: Ie56b460f9f40c2338a78efa70b3d4571aaa00cbe
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 67d81852d1..3012d73ebd 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1719,7 +1719,7 @@ localized country name to ISO 3166-1 alpha 2 code mapping and vice verca. (define-public kcrash (package (name "kcrash") - (version "5.114.0") + (version "6.3.0") (source (origin (method url-fetch) (uri (string-append @@ -1728,12 +1728,11 @@ localized country name to ISO 3166-1 alpha 2 code mapping and vice verca. name "-" version ".tar.xz")) (sha256 (base32 - "1avi4yd3kpjqxrvci1nicxbh9mjafj1w2vgfmqanq66b76s4kxj1")))) + "0hcgljz5wm9v4qphc4cmn81gdrs8lcb4x978xz82gnmqx47pmik5")))) (build-system qt-build-system) - (native-inputs - (list extra-cmake-modules)) - (inputs - (list kcoreaddons kwindowsystem qtbase-5 qtx11extras)) + (native-inputs (list extra-cmake-modules)) + (inputs (list kcoreaddons kwindowsystem)) + (arguments (list #:qtbase qtbase)) (home-page "https://community.kde.org/Frameworks") (synopsis "Graceful handling of application crashes") (description "KCrash provides support for intercepting and handling |