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

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