summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5.4/kinfocenter.nix
blob: ed717790cd0d8889a1edda351b0d6e1506ee8c07 (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
{ plasmaPackage, extra-cmake-modules, kdoctools, kcmutils
, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons
, kdeclarative, kdelibs4support, ki18n, kiconthemes, kio, kpackage
, kservice, kwidgetsaddons, kxmlgui, libraw1394, makeQtWrapper
, pciutils, solid
}:

plasmaPackage {
  name = "kinfocenter";
  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
    makeQtWrapper
  ];
  buildInputs = [
    kcmutils kcompletion kconfig kconfigwidgets kcoreaddons
    kdbusaddons kiconthemes kpackage kservice kwidgetsaddons
    kxmlgui libraw1394 pciutils solid
  ];
  propagatedBuildInputs = [ kdeclarative kdelibs4support ki18n kio ];
  postInstall = ''
    wrapQtProgram "$out/bin/kinfocenter"
  '';
}