about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/kwayland-server/default.nix
blob: f24e0e6d6a040abc6cfe3ed9575debb68f0e5bd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  mkDerivation, lib, cmake,
  extra-cmake-modules, kdoctools,
  kwayland, plasma-wayland-protocols,
  wayland, wayland-protocols, qtbase
}:

mkDerivation {
  name = "kwayland-server";
  nativeBuildInputs = [
    cmake
    extra-cmake-modules #kdoctools
  ];
  buildInputs = [
    kwayland plasma-wayland-protocols wayland wayland-protocols
  ];
  patches = [ ./0001-Use-KDE_INSTALL_TARGETS_DEFAULT_ARGS-when-installing.patch ];
}