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

mkDerivation {
  pname = "polkit-kde-agent";
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [
    kdbusaddons
    kwidgetsaddons
    kcoreaddons
    kcrash
    kconfig
    ki18n
    kiconthemes
    knotifications
    kwindowsystem
    polkit-qt
  ];
  outputs = [ "out" "dev" ];
}