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