summary refs log tree commit diff
path: root/pkgs/applications/kde/filelight.nix
blob: d3925d54988c32dfbfa607bb94095b3e854ff7fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools, wrapGAppsHook,
  kio, kparts, kxmlgui, qtscript, solid
}:

mkDerivation {
  name = "filelight";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ fridh vcunat ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
  propagatedBuildInputs = [
    kio kparts kxmlgui qtscript solid
  ];
}