nixpkgs/pkgs/desktops/kde-5/frameworks/kwayland.nix

15 lines
187 B
Nix

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