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

kdeApp {
  name = "filelight";
  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
    makeQtWrapper
  ];
  buildInputs = [
    kio
    kparts
    qtscript
    solid
    kxmlgui
  ];

  postInstall = ''
    wrapQtProgram "$out/bin/filelight"
  '';
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ fridh vcunat ];
  };
}