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