fd29f6685f
Stay consistent with other multiple output packages.
14 lines
349 B
Nix
14 lines
349 B
Nix
{ qtSubmodule, qtbase, qtquickcontrols, wayland, pkgconfig }:
|
|
|
|
qtSubmodule {
|
|
name = "qtwayland";
|
|
qtInputs = [ qtbase qtquickcontrols ];
|
|
buildInputs = [ wayland ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
outputs = [ "bin" "dev" "out" ];
|
|
postInstall = ''
|
|
moveToOutput "$qtPluginPrefix" "$bin"
|
|
moveToOutput "$qtQmlPrefix" "$bin"
|
|
'';
|
|
}
|