diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-03-27 16:09:52 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-14 15:11:43 -0400 |
commit | d94bcd6b4382e103294ee8a2cb70e6f7c2171df8 (patch) | |
tree | a60618d969613a7667523916848ccff0dc64e51b /gnu | |
parent | c8d2e9a7de1c60f024cb9347d5b12e6928dfd43d (diff) | |
download | guix-d94bcd6b4382e103294ee8a2cb70e6f7c2171df8.tar.gz |
gnu: qtquickcontrols2-5: Update to 5.15.8.
* gnu/packages/qt.scm (qtquickcontrols2-5): Update to 5.15.8.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/qt.scm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 5a13dd11a9..b280f68313 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -2047,20 +2047,20 @@ applications scriptable. This module provides a set of extra components that can be used to build complete interfaces in Qt Quick."))) (define-public qtquickcontrols2-5 - (package (inherit qtsvg-5) + (package + (inherit qtsvg-5) (name "qtquickcontrols2") - (version "5.15.5") + (version "5.15.8") (source (origin - (method url-fetch) - (uri (qt-urls name version)) - (sha256 - (base32 - "1cxg4ml07k1zcyi5m4lx06sz8f5l67isb5vhk7nakxm0wnn7p8y4")))) + (method url-fetch) + (uri (qt-urls name version)) + (sha256 + (base32 + "058dkj6272za47vnz3mxsmwsj85gxf6g0ski645fphk8s3jp2bk5")))) (arguments (substitute-keyword-arguments (package-arguments qtsvg-5) - ((#:tests? _ #f) #f))) ; TODO: Enable the tests - (inputs - (list qtbase-5 qtdeclarative-5)) + ((#:tests? _ #f) #f))) ; TODO: Enable the tests + (inputs (list qtbase-5 qtdeclarative-5)) (synopsis "Qt Quick Controls 2 and other Quick 2 modules") (description "The Qt Quick Controls 2 module contains the Qt Labs Platform module that provides platform integration: native dialogs, menus and menu bars, |