about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/plasma-remotecontrollers.nix
blob: be1c6ff42eff818c1715c6e0e822ce49acfb2b46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ mkDerivation
, extra-cmake-modules
, kconfig
, knotifications
, ki18n
, solid
, kcoreaddons
, kdeclarative
, kcmutils
, kpackage
, kscreenlocker
, 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
    kscreenlocker
    kwindowsystem
    wayland
    libcec
    libcec_platform
    libevdev
    plasma-workspace
    plasma-wayland-protocols
  ];
}