summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/5.8/qtwayland.nix
blob: 7b7bd2f6ebcc4370f2a01dbc717637d135252188 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ qtSubmodule, qtbase, qtquickcontrols, wayland, pkgconfig }:

qtSubmodule {
  name = "qtwayland";
  qtInputs = [ qtbase qtquickcontrols ];
  buildInputs = [ wayland ];
  nativeBuildInputs = [ pkgconfig ];
  outputs = [ "out" "dev" "bin" ];
  postInstall = ''
    moveToOutput "$qtPluginPrefix" "$bin"
    moveToOutput "$qtQmlPrefix "$bin"
  '';
}