summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix
blob: 47264cf38fd7c459b33dfeff49e2477e0f462c2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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 = [
  ];
  propagatedBuildInputs = [
    khtml ki18n kio kwindowsystem kitemviews kcmutils kservice kiconthemes
    kxmlgui kdbusaddons kconfig
  ];
  postInstall = ''
    wrapQtProgram "$out/bin/systemsettings5"
  '';
}