nixpkgs/pkgs/desktops/plasma-5/plasma-remotecontrollers.nix
Alyssa Ross 8a5862be27 plasma5Packages.plasma-remotecontrollers: 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.
2024-08-11 16:04:17 +03:00

43 lines
695 B
Nix

{ mkDerivation
, extra-cmake-modules
, kconfig
, knotifications
, ki18n
, solid
, kcoreaddons
, kdeclarative
, kcmutils
, kpackage
, kscreenlocker
, kwindowsystem
, wayland
, wayland-scanner
, pkg-config
, libcec
, libcec_platform
, libevdev
, plasma-workspace
, plasma-wayland-protocols
}:
mkDerivation {
pname = "plasma-remotecontrollers";
nativeBuildInputs = [ extra-cmake-modules pkg-config wayland-scanner ];
buildInputs = [
kconfig
knotifications
ki18n
solid
kcoreaddons
kdeclarative
kcmutils
kpackage
kscreenlocker
kwindowsystem
wayland
libcec
libcec_platform
libevdev
plasma-workspace
plasma-wayland-protocols
];
}