summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kwayland.nix
blob: b5255022a86d2f78ec6137ed6bc948ce51fc3326 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ kdeFramework
, extra-cmake-modules
, qtbase, wayland
}:

kdeFramework {
  name = "kwayland";
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [ qtbase ];
  propagatedBuildInputs = [
    wayland
  ];
}