mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add qtlocation.
* gnu/packages/qt.scm (qtlocation): New variable.
This commit is contained in:
parent
f5377013d6
commit
d5ca54ce47
1 changed files with 20 additions and 0 deletions
|
@ -692,6 +692,26 @@ (define-public qtwebchannel
|
||||||
("qtwebsockets" ,qtwebsockets)))
|
("qtwebsockets" ,qtwebsockets)))
|
||||||
(inputs `(("qtbase" ,qtbase)))))
|
(inputs `(("qtbase" ,qtbase)))))
|
||||||
|
|
||||||
|
(define-public qtlocation
|
||||||
|
(package (inherit qtsvg)
|
||||||
|
(name "qtlocation")
|
||||||
|
(version "5.6.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://download.qt.io/official_releases/qt/"
|
||||||
|
(version-major+minor version) "/" version
|
||||||
|
"/submodules/" name "-opensource-src-"
|
||||||
|
version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0qahs7a2n3l4h0bl8bnwci9mzy1vra3zncnzr40csic9ys67ddfk"))))
|
||||||
|
(native-inputs
|
||||||
|
`(("perl" ,perl)
|
||||||
|
("qtdeclarative" ,qtdeclarative)
|
||||||
|
;("qtquickcontrols" ,qtquickcontrols)
|
||||||
|
("qtserialport" ,qtserialport)))
|
||||||
|
(inputs `(("qtbase" ,qtbase)))))
|
||||||
|
|
||||||
(define-public qjson
|
(define-public qjson
|
||||||
(package
|
(package
|
||||||
(name "qjson")
|
(name "qjson")
|
||||||
|
|
Loading…
Reference in a new issue