diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-06 00:37:37 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:01 +0800 |
commit | 86b3aa638d39c2e7a9373b849243f4036ac42bb7 (patch) | |
tree | 20888c35371f660b04f9a3cc399c4cc5431a9154 /gnu | |
parent | 08b34ca0fc915ea440b069ec8cd18c142a5a5523 (diff) | |
download | guix-86b3aa638d39c2e7a9373b849243f4036ac42bb7.tar guix-86b3aa638d39c2e7a9373b849243f4036ac42bb7.tar.gz |
gnu: sonnet: Update to 6.3.0.
* gnu/packages/kde-frameworks.scm (sonnet): Update to 6.3.0.
[arguments]: Set #:qtbase to qtbase.
[inputs]: Remove qtdeclarative-5 and qtbase-5; add qtdeclarative.
[native-inputs]: Remove qttools-5; add qttools.
Change-Id: I09b87745cf976fa6cfd84df0b4d128cc92991a30
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index b9f1c24fbb..bbe9d57b41 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1489,7 +1489,7 @@ system.") (define-public sonnet (package (name "sonnet") - (version "5.114.0") + (version "6.3.0") (source (origin (method url-fetch) (uri (string-append @@ -1498,16 +1498,15 @@ system.") name "-" version ".tar.xz")) (sha256 (base32 - "0zxi96i3gfpx759qc1nyz7jqlswg5ivgr1w9gbbsm1x5fi9ikadx")))) + "0zjcjy2b697wizgrr210g24cvkli6yi2ry05kzfc6xxarq0dsi3b")))) (build-system qt-build-system) + (arguments (list #:qtbase qtbase)) (native-inputs - (list extra-cmake-modules pkg-config qttools-5)) + (list extra-cmake-modules pkg-config qttools)) (inputs - (list aspell - hunspell + (list aspell hunspell ;; TODO: hspell (for Hebrew), Voikko (for Finish) - qtdeclarative-5 - qtbase-5)) + qtdeclarative)) (home-page "https://community.kde.org/Frameworks") (synopsis "Multi-language spell checker") (description "Sonnet is a plugin-based spell checking library for Qt-based |