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 | bb70354eb7616907c50335bb5d408c7cb6413d74 (patch) | |
tree | ba631e9147c5548124d0e812609103556e2e9401 | |
parent | 675092b90b9c0712f224ed3e6735c178e8fc3bb8 (diff) | |
download | guix-bb70354eb7616907c50335bb5d408c7cb6413d74.tar.gz |
gnu: qttools-5: Update to 5.15.8.
* gnu/packages/qt.scm (qttools-5): Update to 5.15.8.
-rw-r--r-- | gnu/packages/qt.scm | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index ca0614af4b..8bfdf1e732 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -1926,22 +1926,21 @@ plugin for Adobe After Effects.") (license (package-license qtbase)))) (define-public qttools-5 - (package (inherit qtsvg-5) + (package + (inherit qtsvg-5) (name "qttools") - (version "5.15.5") + (version "5.15.8") (source (origin - (method url-fetch) - (uri (qt-urls name version)) - (sha256 - (base32 - "0v7wkzq9i8w3qrw0z8al7lb6clr57lfisyb1fm9cnhi73fvph1vd")))) + (method url-fetch) + (uri (qt-urls name version)) + (sha256 + (base32 + "1i79fwsn799x3n3jidp3f4gz9d5vi9gg6p8g8lbswb832gggigm3")))) (arguments (substitute-keyword-arguments (package-arguments qtsvg-5) - ((#:tests? _ #f) #f))) ; TODO: Enable the tests - (native-inputs - (list perl qtdeclarative-5 vulkan-headers)) - (inputs - (list mesa qtbase-5)) + ((#:tests? _ #f) #f))) ; TODO: Enable the tests + (native-inputs (list perl qtdeclarative-5 vulkan-headers)) + (inputs (list mesa qtbase-5)) (synopsis "Qt Tools and Designer modules") (description "The Qt Tools module provides a set of applications to browse the documentation, translate applications, generate help files and other stuff |