mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
42 lines
647 B
Nix
42 lines
647 B
Nix
|
{
|
||
|
mkDerivation,
|
||
|
extra-cmake-modules,
|
||
|
kconfig,
|
||
|
knotifications,
|
||
|
ki18n,
|
||
|
solid,
|
||
|
kcoreaddons,
|
||
|
kdeclarative,
|
||
|
kcmutils,
|
||
|
kpackage,
|
||
|
kwindowsystem,
|
||
|
wayland,
|
||
|
pkg-config,
|
||
|
libcec,
|
||
|
libcec_platform,
|
||
|
libevdev,
|
||
|
plasma-workspace,
|
||
|
plasma-wayland-protocols,
|
||
|
}:
|
||
|
mkDerivation {
|
||
|
pname = "plasma-remotecontrollers";
|
||
|
nativeBuildInputs = [ extra-cmake-modules pkg-config ];
|
||
|
buildInputs = [
|
||
|
kconfig
|
||
|
knotifications
|
||
|
ki18n
|
||
|
solid
|
||
|
kcoreaddons
|
||
|
kdeclarative
|
||
|
kcmutils
|
||
|
kpackage
|
||
|
kwindowsystem
|
||
|
wayland
|
||
|
libcec
|
||
|
libcec_platform
|
||
|
libevdev
|
||
|
plasma-workspace
|
||
|
plasma-wayland-protocols
|
||
|
];
|
||
|
}
|