b6bf1ce319
Dependency qtdeclarative was missing so QML plugin was not built.
11 lines
216 B
Nix
11 lines
216 B
Nix
{ qtSubmodule, qtbase, qtdeclarative }:
|
|
|
|
qtSubmodule {
|
|
name = "qtcharts";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
postInstall = ''
|
|
moveToOutput "$qtQmlPrefix" "$bin"
|
|
'';
|
|
}
|