mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 00:54:11 +00:00
qt5.qtcharts: enable qml
Dependency qtdeclarative was missing so QML plugin was not built.
This commit is contained in:
parent
f1514a5876
commit
b6bf1ce319
|
@ -1,8 +1,8 @@
|
|||
{ qtSubmodule, qtbase }:
|
||||
{ qtSubmodule, qtbase, qtdeclarative }:
|
||||
|
||||
qtSubmodule {
|
||||
name = "qtcharts";
|
||||
qtInputs = [ qtbase ];
|
||||
qtInputs = [ qtbase qtdeclarative ];
|
||||
outputs = [ "out" "dev" "bin" ];
|
||||
postInstall = ''
|
||||
moveToOutput "$qtQmlPrefix" "$bin"
|
||||
|
|
Loading…
Reference in a new issue