2020-09-05 16:18:05 +02:00
|
|
|
{
|
2020-12-05 20:24:56 +01:00
|
|
|
mkDerivation, lib, cmake,
|
2020-09-05 16:18:05 +02:00
|
|
|
extra-cmake-modules, kdoctools,
|
|
|
|
kwayland, plasma-wayland-protocols,
|
2020-12-05 20:24:56 +01:00
|
|
|
wayland, wayland-protocols, qtbase
|
2020-09-05 16:18:05 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
}
|