plasma5Packages.kidletime: depend on wayland-scanner

Otherwise, wayland-scanner would be picked up from the wayland in
buildInputs, which isn't cross-friendly and will stop working when we
split wayland-scanner into a separate package.
This commit is contained in:
Alyssa Ross 2023-02-11 11:22:36 +00:00 committed by Florian Klink
parent abea49c977
commit 3040aa615c

View File

@ -1,13 +1,12 @@
{
mkDerivation,
extra-cmake-modules,
qtbase, qtx11extras,
wayland, wayland-protocols, plasma-wayland-protocols
{ mkDerivation
, extra-cmake-modules, wayland-scanner
, qtbase, qtx11extras
, wayland, wayland-protocols, plasma-wayland-protocols
}:
mkDerivation {
pname = "kidletime";
nativeBuildInputs = [ extra-cmake-modules ];
nativeBuildInputs = [ extra-cmake-modules wayland-scanner ];
buildInputs = [ qtx11extras wayland wayland-protocols plasma-wayland-protocols ];
propagatedBuildInputs = [ qtbase ];
}