mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add qtscript.
* gnu/packages/qt.scm (qtscript): New variable.
This commit is contained in:
parent
66cf0f054d
commit
4742c4decc
1 changed files with 19 additions and 0 deletions
|
@ -736,6 +736,25 @@ (define-public qttools
|
||||||
`(("mesa" ,mesa)
|
`(("mesa" ,mesa)
|
||||||
("qtbase" ,qtbase)))))
|
("qtbase" ,qtbase)))))
|
||||||
|
|
||||||
|
(define-public qtscript
|
||||||
|
(package (inherit qtsvg)
|
||||||
|
(name "qtscript")
|
||||||
|
(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
|
||||||
|
"1gini9483flqa9q4a4bl81bh7g5s408bycqykqhgbklmfd29y5lx"))))
|
||||||
|
(native-inputs
|
||||||
|
`(("perl" ,perl)
|
||||||
|
("qttools" ,qttools)))
|
||||||
|
(inputs
|
||||||
|
`(("qtbase" ,qtbase)))))
|
||||||
|
|
||||||
(define-public qjson
|
(define-public qjson
|
||||||
(package
|
(package
|
||||||
(name "qjson")
|
(name "qjson")
|
||||||
|
|
Loading…
Reference in a new issue