2017-02-28 13:41:58 +00:00
|
|
|
{
|
2023-04-24 20:27:17 +00:00
|
|
|
mkDerivation, propagateBin, lib,
|
2017-02-28 13:41:58 +00:00
|
|
|
extra-cmake-modules,
|
2020-08-21 05:16:50 +00:00
|
|
|
plasma-wayland-protocols, qtbase, wayland, wayland-protocols
|
2016-07-10 09:36:14 +00:00
|
|
|
}:
|
|
|
|
|
2017-05-15 17:05:35 +00:00
|
|
|
mkDerivation {
|
2022-02-23 17:28:27 +00:00
|
|
|
pname = "kwayland";
|
2017-02-28 13:41:58 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
2020-08-21 05:16:50 +00:00
|
|
|
buildInputs = [ plasma-wayland-protocols wayland wayland-protocols ];
|
2017-05-22 18:49:07 +00:00
|
|
|
propagatedBuildInputs = [ qtbase ];
|
|
|
|
setupHook = propagateBin; # XDG_CONFIG_DIRS
|
2023-04-24 20:27:17 +00:00
|
|
|
meta.platforms = lib.platforms.linux ++ lib.platforms.freebsd;
|
2016-07-10 09:36:14 +00:00
|
|
|
}
|