nixpkgs/pkgs/desktops/plasma-5/kwayland-server/default.nix

20 lines
490 B
Nix
Raw Normal View History

2020-09-05 07:18:05 -07:00
{
2020-12-05 11:24:56 -08:00
mkDerivation, lib, cmake,
2020-09-05 07:18:05 -07:00
extra-cmake-modules, kdoctools,
kwayland, plasma-wayland-protocols,
2020-12-05 11:24:56 -08:00
wayland, wayland-protocols, qtbase
2020-09-05 07:18:05 -07: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 ];
2020-12-05 11:24:56 -08:00
meta.broken = lib.versionOlder qtbase.version "5.15.0";
2020-09-05 07:18:05 -07:00
}