mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add qtquickcontrols.
* gnu/packages/qt.scm (qtquickcontrols): New variable.
This commit is contained in:
parent
5ca6ef95f4
commit
ae0e51330c
1 changed files with 17 additions and 0 deletions
|
@ -802,6 +802,23 @@ (define-public qtscript
|
||||||
(inputs
|
(inputs
|
||||||
`(("qtbase" ,qtbase)))))
|
`(("qtbase" ,qtbase)))))
|
||||||
|
|
||||||
|
(define-public qtquickcontrols
|
||||||
|
(package (inherit qtsvg)
|
||||||
|
(name "qtquickcontrols")
|
||||||
|
(version "5.6.1-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
|
||||||
|
"0cjzf844r7wi32ssc9vbw1a2m9hnr8c0i1p7yyljy962ifplf401"))))
|
||||||
|
(inputs
|
||||||
|
`(("qtbase" ,qtbase)
|
||||||
|
("qtdeclarative" ,qtdeclarative)))))
|
||||||
|
|
||||||
(define-public python-sip
|
(define-public python-sip
|
||||||
(package
|
(package
|
||||||
(name "python-sip")
|
(name "python-sip")
|
||||||
|
|
Loading…
Reference in a new issue