apteryx pushed a commit to branch qt-team
in repository guix.
commit 528ecaa4f4e8a824dec54ce333b4de5311246d81
Author: Zheng Junjie <[email protected]>
AuthorDate: Wed Mar 13 17:01:53 2024 +0800
gnu: Add qtsensors.
* gnu/packages/qt.scm (qtsensors): New variable.
Change-Id: I5d5bf3902f3340d6e73dc8889e27d4e5bf28b058
Signed-off-by: Maxim Cournoyer <[email protected]>
---
gnu/packages/qt.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 0906a21d00..edc20c629e 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -1668,6 +1668,24 @@ consume data received from the server, or both.")
(home-page (package-home-page qtbase))
(license (package-license qtbase))))
+(define-public qtsensors
+ (package
+ (inherit qtsvg)
+ (name "qtsensors")
+ (version "6.6.2")
+ (source (origin
+ (method url-fetch)
+ (uri (qt-url name version))
+ (sha256
+ (base32
+ "0a3w50bfnmxndyxnn9lsy1wxffhm2am0yjxqx3vx0gfjwv79yvsa"))))
+ (native-inputs (list qtdeclarative))
+ (inputs (list qtbase))
+ (synopsis "Qt Sensors module")
+ (description "The Qt Sensors API provides access to sensor hardware via QML
+and C++ interfaces. The Qt Sensors API also provides a motion gesture
+recognition API for devices.")))
+
(define-public qtsensors-5
(package
(inherit qtsvg-5)