guix_mirror_bot pushed a commit to branch qt-team-old
in repository guix.
commit 54e5ca5673988eab78abc960b8dc28e06825e191
Author: 宋文武 <[email protected]>
AuthorDate: Tue Feb 4 14:55:35 2025 +0800
gnu: qtnetworkauth: Update to 6.8.2.
* gnu/packages/qt.scm (qtnetworkauth): Update to 6.8.2.
[arguments]: Set QT_QPA_PLATFORM=offscreen before the check phase.
Change-Id: Ib4f3aa65c7d9fb7d14b40b6a7c6bd451e07761ca
---
gnu/packages/qt.scm | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index c142c6f973..87a87bed30 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -2924,15 +2924,21 @@ implementation of OAuth and OAuth2 authenticathon
methods for Qt.")))
(define-public qtnetworkauth
(package
(name "qtnetworkauth")
- (version "6.7.2")
+ (version "6.8.2")
(source (origin
(method url-fetch)
(uri (qt-url name version))
(sha256
(base32
- "0w7l5lhhxhg9x1rd66727gwkpzi6l7wmyc0c4qrfp2g5rx7q42bz"))))
+ "1mxlam2fzh8arfq7iypsvlk4h2pbj41f5a7ibakap1zc4ysv95fl"))))
(build-system cmake-build-system)
- (arguments (list #:configure-flags #~(list "-DQT_BUILD_TESTS=ON")))
+ (arguments
+ (list #:configure-flags #~(list "-DQT_BUILD_TESTS=ON")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ (setenv "QT_QPA_PLATFORM" "offscreen"))))))
(native-inputs (list perl))
(inputs (list qtbase))
(home-page (package-home-page qtbase))