diff options
author | Zheng Junjie <z572@z572.online> | 2025-03-05 19:09:21 +0800 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-03-05 21:55:36 +0800 |
commit | 3c886253ac110b81c64a884fded42fea72d7d117 (patch) | |
tree | fd9fb8253ddb23a2a9fed2c0de06f8b5523eb871 | |
parent | 5dc1135d79d1ef1503a122628070e923b412fa60 (diff) | |
download | guix-3c886253ac110b81c64a884fded42fea72d7d117.tar.gz guix-3c886253ac110b81c64a884fded42fea72d7d117.zip |
gnu: gcompris-qt: Update to 25.0.12.
* gnu/packages/education.scm (gcompris-qt): Update to 25.0.12.
[arguments]: Set #:qtbase to qtbase.
[inputs]: Remove qtbase-5, qtcharts-5, qtdeclarative-5, qtgraphicaleffects,
qtmultimedia-5, qtquickcontrols2-5, qtsensors-5, and qtsvg-5; add
qtcharts, qtdeclarative, qtmultimedia, qtsensors, and qtsvg.
[native-inputs]: Remove qttools-5; add pkg-config and qttools.
Change-Id: Ib16339c33c43ddf6b11db169006ae58e2bb5e620
-rw-r--r-- | gnu/packages/education.scm | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index 18389136b7..f291a5ca39 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -219,7 +219,7 @@ of categories with some of the activities available in that category. (define-public gcompris-qt (package (name "gcompris-qt") - (version "4.3") + (version "25.0.12") (source (origin (method url-fetch) @@ -227,10 +227,11 @@ of categories with some of the activities available in that category. "mirror://kde/stable/gcompris/qt/src/gcompris-qt-" version ".tar.xz")) (sha256 - (base32 "1ixm0gdpxpbkz2zspvvrkwdjadrc03wxm4d1kk1ckv3f8f3i7sn7")))) + (base32 "1my67r7x6j7snidnj47v3ndhf3i5sxn0zqj4d8apaw6mbqms96vj")))) (build-system qt-build-system) (arguments - `(#:phases + `(#:qtbase ,qtbase + #:phases (modify-phases %standard-phases (add-before 'check 'start-xorg-server (lambda* (#:key inputs #:allow-other-keys) @@ -246,19 +247,17 @@ of categories with some of the activities available in that category. gettext-minimal kdoctools perl - qttools-5 + pkg-config + qttools xorg-server-for-tests)) (inputs (list openssl python-wrapper - qtbase-5 - qtcharts-5 - qtdeclarative-5 - qtgraphicaleffects - qtmultimedia-5 - qtquickcontrols2-5 - qtsensors-5 - qtsvg-5)) + qtcharts + qtdeclarative + qtmultimedia + qtsensors + qtsvg)) (home-page "https://gcompris.net/index-en.html") (synopsis "Educational games for small children") (description |