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