48 lines
731 B
Nix
48 lines
731 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
|
|
];
|
|
}
|