Archived
1
0
Fork 0

gnu: qtlocation: Update to 5.15.5.

* gnu/packages/qt.scm (qtlocation): Update to 5.15.5.
[arguments]: Use gexps.
This commit is contained in:
Maxim Cournoyer 2023-03-27 16:09:51 -04:00
parent 96a6aa51f1
commit 675092b90b
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -1869,7 +1869,8 @@ application without necessarily including a full web browser stack by using
native APIs where it makes sense."))) native APIs where it makes sense.")))
(define-public qtlocation (define-public qtlocation
(package (inherit qtsvg-5) (package
(inherit qtsvg-5)
(name "qtlocation") (name "qtlocation")
(version "5.15.5") (version "5.15.5")
(source (origin (source (origin
@ -1882,14 +1883,12 @@ native APIs where it makes sense.")))
(substitute-keyword-arguments (package-arguments qtsvg-5) (substitute-keyword-arguments (package-arguments qtsvg-5)
((#:tests? _ #f) #f) ; TODO: Enable the tests ((#:tests? _ #f) #f) ; TODO: Enable the tests
((#:phases phases) ((#:phases phases)
`(modify-phases ,phases #~(modify-phases #$phases
(add-before 'check 'pre-check (add-before 'check 'pre-check
(lambda _ (lambda _
(setenv "HOME" "/tmp"))))))) (setenv "HOME" "/tmp")))))))
(native-inputs (native-inputs (list perl qtdeclarative-5 qtquickcontrols-5 qtserialport))
(list perl qtdeclarative-5 qtquickcontrols-5 qtserialport)) (inputs (list icu4c openssl qtbase-5 zlib))
(inputs
(list icu4c openssl qtbase-5 zlib))
(synopsis "Qt Location and Positioning modules") (synopsis "Qt Location and Positioning modules")
(description "The Qt Location module provides an interface for location, (description "The Qt Location module provides an interface for location,
positioning and geolocation plugins."))) positioning and geolocation plugins.")))