about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-5/modules/qtwayland.nix
blob: c7a7704f28372fd25355f34231f0d7d93ccc6c67 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ qtModule, qtbase, qtquickcontrols, wayland, pkgconfig }:

qtModule {
  name = "qtwayland";
  qtInputs = [ qtbase qtquickcontrols ];
  buildInputs = [ wayland ];
  nativeBuildInputs = [ pkgconfig ];
  outputs = [ "out" "dev" "bin" ];
}