fd29f6685f
Stay consistent with other multiple output packages.
11 lines
209 B
Nix
11 lines
209 B
Nix
{ qtSubmodule, qtdeclarative }:
|
|
|
|
qtSubmodule {
|
|
name = "qtquickcontrols2";
|
|
qtInputs = [ qtdeclarative ];
|
|
outputs = [ "bin" "dev" "out" ];
|
|
postInstall = ''
|
|
moveToOutput "$qtQmlPrefix" "$bin"
|
|
'';
|
|
}
|