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

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