1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/desktops/plasma-5/kwayland-server/default.nix

20 lines
490 B
Nix
Raw Normal View History

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