mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: qtscxml: Update to 5.15.8.
* gnu/packages/qt.scm (qtscxml): Update to 5.15.8.
This commit is contained in:
parent
2c5324d806
commit
377dca61c6
1 changed files with 18 additions and 19 deletions
|
@ -2123,27 +2123,26 @@ (define-public qtgamepad
|
||||||
and mobile applications targeting TV-like form factors.")))
|
and mobile applications targeting TV-like form factors.")))
|
||||||
|
|
||||||
(define-public qtscxml
|
(define-public qtscxml
|
||||||
(package (inherit qtsvg-5)
|
(package
|
||||||
|
(inherit qtsvg-5)
|
||||||
(name "qtscxml")
|
(name "qtscxml")
|
||||||
(version "5.15.5")
|
(version "5.15.8")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (qt-urls name version))
|
(uri (qt-urls name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0xf5mqsrw16h8xjglymgfc8qg2qa5bi4fgdl4j3dkhvvpr7vrphp"))
|
"17j6npvgr8q3lyrqmvfh1n47mkhfzk18r998hcjm2w75xj46km1n"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
(delete-file-recursively "tests/3rdparty")
|
(delete-file-recursively "tests/3rdparty")
|
||||||
;; the scion test refers to the bundled 3rd party test code.
|
;; the scion test refers to the bundled 3rd party test code.
|
||||||
(substitute* "tests/auto/auto.pro"
|
(substitute* "tests/auto/auto.pro"
|
||||||
(("scion") "#"))))))
|
(("scion") "#"))))))
|
||||||
(arguments
|
(arguments (substitute-keyword-arguments (package-arguments qtsvg-5)
|
||||||
(substitute-keyword-arguments (package-arguments qtsvg-5)
|
((#:tests? _ #f) #f))) ; TODO: Enable the tests
|
||||||
((#:tests? _ #f) #f))) ; TODO: Enable the tests
|
(inputs (list qtbase-5 qtdeclarative-5))
|
||||||
(inputs
|
|
||||||
(list qtbase-5 qtdeclarative-5))
|
|
||||||
(synopsis "Qt SCXML module")
|
(synopsis "Qt SCXML module")
|
||||||
(description "The Qt SCXML module provides functionality to create state
|
(description "The Qt SCXML module provides functionality to create state
|
||||||
machines from SCXML files. This includes both dynamically creating state
|
machines from SCXML files. This includes both dynamically creating state
|
||||||
|
|
Loading…
Reference in a new issue