mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: qtwebengine: Fix build.
The package was not really building; the build phase was failing silently and no libraries were installed to the output. * gnu/packages/qt.scm (qtwebengine) [native-inputs]: Replace node by node-lts, instead of simply appending it.
This commit is contained in:
parent
ddea1161ad
commit
2b1cf6906d
1 changed files with 2 additions and 2 deletions
|
@ -2794,7 +2794,7 @@ (define (delete-unwanted-files child stat flag base level)
|
|||
#:configure-flags
|
||||
;; Use the CMake ninja generator, otherwise the build fails (see:
|
||||
;; https://bugreports.qt.io/browse/QTBUG-96897).
|
||||
#~(list "-GNinja" ;
|
||||
#~(list "-GNinja"
|
||||
;; Manually add the NSS library prefix to the linker
|
||||
;; search path, otherwise it fails to be linked (see:
|
||||
;; https://bugreports.qt.io/browse/QTBUG-105053).
|
||||
|
@ -2875,9 +2875,9 @@ (define (delete-unwanted-files child stat flag base level)
|
|||
(native-inputs
|
||||
(modify-inputs (package-native-inputs qtwebengine-5)
|
||||
(delete "python2" "python2-six")
|
||||
(replace "node" node-lts)
|
||||
(append clang-14
|
||||
lld-as-ld-wrapper
|
||||
node-lts
|
||||
python-wrapper
|
||||
python-html5lib)))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue