mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add qtsensors.
* gnu/packages/qt.scm (qtsensors): New variable. Change-Id: I5d5bf3902f3340d6e73dc8889e27d4e5bf28b058 Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
83da3a13bf
commit
fa2fe542c3
1 changed files with 18 additions and 0 deletions
|
@ -1728,6 +1728,24 @@ (define-public qtwebsockets
|
|||
(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)
|
||||
|
|
Loading…
Reference in a new issue