summary refs log tree commit diff
path: root/pkgs/applications/kde/filelight.nix
blob: a3be5be7f0a2932187f37b99fb8a33129b0a964b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  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 ];
  propagatedBuildInputs = [
    kio kparts kxmlgui qtscript solid
  ];
  outputs = [ "out" "dev" ];
}