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

let
  unwrapped =
    kdeApp {
      name = "filelight";
      meta = {
        license = with lib.licenses; [ gpl2 ];
        maintainers = with lib.maintainers; [ fridh vcunat ];
      };
      nativeBuildInputs = [ extra-cmake-modules kdoctools ];
      propagatedBuildInputs = [
        kio kparts kxmlgui qtscript solid
      ];
    };
in
kdeWrapper {
  inherit unwrapped;
  targets = [ "bin/filelight" ];
}