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

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