mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 23:20:29 -05:00
gnu: qtwebglplugin: Update to 5.15.8.
* gnu/packages/qt.scm (qtwebglplugin): Update to 5.15.8. [arguments]: Use gexps.
This commit is contained in:
parent
423fa35d99
commit
9c5c68f2f3
1 changed files with 14 additions and 13 deletions
|
@ -1822,25 +1822,26 @@ (define-public qtwebchannel
|
||||||
(license (package-license qtbase))))
|
(license (package-license qtbase))))
|
||||||
|
|
||||||
(define-public qtwebglplugin
|
(define-public qtwebglplugin
|
||||||
(package (inherit qtsvg-5)
|
(package
|
||||||
|
(inherit qtsvg-5)
|
||||||
(name "qtwebglplugin")
|
(name "qtwebglplugin")
|
||||||
(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
|
||||||
"1m0p4ssykw07lbip2qyv6w34f8ng13bxb63j0w446f5w0492nn9f"))))
|
"1gvzhgfn55kdp5g11fg5yja5xb6wghx5sfc8vfp8zzpxnak7pbn1"))))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments qtsvg-5)
|
(substitute-keyword-arguments (package-arguments qtsvg-5)
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
`(modify-phases ,phases
|
#~(modify-phases #$phases
|
||||||
(add-after 'unpack 'disable-network-tests
|
(add-after 'unpack 'disable-network-tests
|
||||||
(lambda _ (substitute* "tests/plugins/platforms/platforms.pro"
|
(lambda _
|
||||||
(("webgl") "# webgl"))))))))
|
(substitute* "tests/plugins/platforms/platforms.pro"
|
||||||
|
(("webgl") "# webgl"))))))))
|
||||||
(native-inputs '())
|
(native-inputs '())
|
||||||
(inputs
|
(inputs (list mesa qtbase-5 qtdeclarative-5 qtwebsockets-5 zlib))
|
||||||
(list mesa qtbase-5 qtdeclarative-5 qtwebsockets-5 zlib))
|
|
||||||
(synopsis "QPA plugin for running applications via a browser using
|
(synopsis "QPA plugin for running applications via a browser using
|
||||||
streamed WebGL commands")
|
streamed WebGL commands")
|
||||||
(description "Qt back end that uses WebGL for rendering. It allows Qt
|
(description "Qt back end that uses WebGL for rendering. It allows Qt
|
||||||
|
|
Loading…
Reference in a new issue