about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/plasma-5.5/kmenuedit.nix
blob: 3834ca1328f890b25ff531c908bf16fd88376f3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ plasmaPackage, extra-cmake-modules, kdoctools, ki18n, kxmlgui
, kdbusaddons, kiconthemes, kio, sonnet, kdelibs4support, makeQtWrapper
}:

plasmaPackage {
  name = "kmenuedit";
  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
    makeQtWrapper
  ];
  buildInputs = [
    kxmlgui kdbusaddons kiconthemes
  ];
  propagatedBuildInputs = [ kdelibs4support ki18n kio sonnet ];
  postInstall = ''
    wrapQtProgram "$out/bin/kmenuedit"
  '';
}