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

qtModule {
  pname = "qtwayland";
  qtInputs = [ qtbase qtquickcontrols ];
  buildInputs = [ wayland ];
  nativeBuildInputs = [ pkg-config ];
  outputs = [ "out" "dev" "bin" ];
}