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

mkDerivation {
  pname = "filelight";
  meta = {
    description = "Disk usage statistics";
    homepage = "https://apps.kde.org/filelight/";
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ fridh vcunat ];
    broken = lib.versionOlder qtbase.version "5.13";
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  propagatedBuildInputs = [
    kio kparts kxmlgui qtscript solid qtquickcontrols2 kdeclarative
  ];
  outputs = [ "out" "dev" ];
}