about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/plasma-5.5/polkit-kde-agent.nix
blob: 3fc3a441ac3440385b69443dbfce977ccb7c69a6 (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
{ plasmaPackage
, extra-cmake-modules
, ki18n
, kwindowsystem
, kdbusaddons
, kwidgetsaddons
, kcoreaddons
, kcrash
, kconfig
, kiconthemes
, knotifications
, polkit-qt
}:

plasmaPackage {
  name = "polkit-kde-agent";
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    kdbusaddons
    kwidgetsaddons
    kcoreaddons
    kcrash
    kconfig
    kiconthemes
    knotifications
    polkit-qt
  ];
  propagatedBuildInputs = [ ki18n kwindowsystem ];
}