2017-02-28 07:37:57 -08:00
|
|
|
{ qtSubmodule, qtbase, qtquickcontrols, wayland, pkgconfig }:
|
|
|
|
|
|
|
|
qtSubmodule {
|
|
|
|
name = "qtwayland";
|
|
|
|
qtInputs = [ qtbase qtquickcontrols ];
|
|
|
|
buildInputs = [ wayland ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-05-18 16:19:42 -07:00
|
|
|
outputs = [ "out" "dev" "bin" ];
|
|
|
|
postInstall = ''
|
|
|
|
moveToOutput "$qtPluginPrefix" "$bin"
|
2017-06-17 09:26:19 -07:00
|
|
|
moveToOutput "$qtQmlPrefix" "$bin"
|
2017-05-18 16:19:42 -07:00
|
|
|
'';
|
2017-02-28 07:37:57 -08:00
|
|
|
}
|