summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-16.04/filelight.nix
blob: 5ac101fa5018a4d95f4975c52d6d817ae11ea4bc (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
{ kdeApp
, lib
, extra-cmake-modules
, kdoctools
, makeQtWrapper
, qtscript
, kio
, solid
, kxmlgui
, kparts
}:

kdeApp {
  name = "filelight";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ fridh vcunat ];
  };
  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
    makeQtWrapper
  ];
  propagatedBuildInputs = [
    kio kparts qtscript solid kxmlgui
  ];
  postInstall = ''
    wrapQtProgram "$out/bin/filelight"
  '';
}