mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add qtconnectivity.
* gnu/packages/qt.scm (qtconnectivity): New variable. Change-Id: Ia2c1d9d260b47cd3a18c9ab5ac7e8f5ea83b7e11
This commit is contained in:
parent
c6dc494398
commit
74d9a10e9f
1 changed files with 30 additions and 0 deletions
|
@ -1694,6 +1694,36 @@ (define-public qtconnectivity-5
|
|||
(description "The Qt Connectivity modules provides modules for interacting
|
||||
with Bluetooth and NFC.")))
|
||||
|
||||
(define-public qtconnectivity
|
||||
(package
|
||||
(name "qtconnectivity")
|
||||
(version "6.7.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (qt-url name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1s08djgzhh5p9ij0hxbrrcx9n7r7f0ba6pr9793mdsgh8ar23lwf"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
(list perl pkg-config qtdeclarative))
|
||||
(inputs
|
||||
(list bluez qtbase))
|
||||
(arguments
|
||||
(list
|
||||
#:configure-flags #~(list "-DQT_BUILD_TESTS=ON")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'check 'set-display
|
||||
(lambda _
|
||||
;; Make Qt render "offscreen", required for tests.
|
||||
(setenv "QT_QPA_PLATFORM" "offscreen"))))))
|
||||
(synopsis "Qt Connectivity module")
|
||||
(description "The Qt Connectivity modules provides modules for interacting
|
||||
with Bluetooth and NFC.")
|
||||
(home-page (package-home-page qtbase))
|
||||
(license (package-license qtbase))))
|
||||
|
||||
(define-public qtwebsockets-5
|
||||
(package (inherit qtsvg-5)
|
||||
(name "qtwebsockets")
|
||||
|
|
Loading…
Reference in a new issue