summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-6/modules/qtwayland.nix
blob: e28cdb438e5e6d0abb7ad9489c7ba1238920cd8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ qtModule
, qtbase
, qtquick3d
, qtdeclarative
, wayland
, pkg-config
, libdrm
}:

qtModule {
  pname = "qtwayland";
  qtInputs = [ qtbase qtdeclarative ];
  buildInputs = [ wayland libdrm ];
  nativeBuildInputs = [ pkg-config ];
}