summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/plasma-5.5/systemsettings.nix
blob: a921e153dbc2d9095399961325cb299429aa0eeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ plasmaPackage, extra-cmake-modules, kdoctools, kitemviews
, kcmutils, ki18n, kio, kservice, kiconthemes, kwindowsystem
, kxmlgui, kdbusaddons, kconfig, khtml, makeQtWrapper
}:

plasmaPackage {
  name = "systemsettings";
  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
    makeQtWrapper
  ];
  buildInputs = [
    kitemviews kcmutils kservice kiconthemes kxmlgui kdbusaddons
    kconfig
  ];
  propagatedBuildInputs = [ khtml ki18n kio kwindowsystem ];
  postInstall = ''
    wrapQtProgram "$out/bin/systemsettings5"
  '';
}