11 lines
187 B
Nix
11 lines
187 B
Nix
|
{ qtSubmodule, qtbase }:
|
||
|
|
||
|
qtSubmodule {
|
||
|
name = "qtcharts";
|
||
|
qtInputs = [ qtbase ];
|
||
|
outputs = [ "out" "dev" "bin" ];
|
||
|
postInstall = ''
|
||
|
moveToOutput "$qtQmlPrefix" "$bin"
|
||
|
'';
|
||
|
}
|