nixpkgs/pkgs/applications/kde/filelight.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
687 B
Nix
Raw Normal View History

2022-11-25 11:25:47 +00:00
{ mkDerivation
, lib
, extra-cmake-modules
, kdoctools
, kio
, kparts
, kxmlgui
, qtscript
, solid
, qtquickcontrols2
, kdeclarative
, kirigami2
, kquickcharts
}:
2017-05-16 15:56:41 +00:00
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "filelight";
2017-05-16 15:56:41 +00:00
meta = {
description = "Disk usage statistics";
mainProgram = "filelight";
homepage = "https://apps.kde.org/filelight/";
2017-05-16 15:56:41 +00:00
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ fridh vcunat ];
};
2017-05-17 19:26:11 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-05-16 15:56:41 +00:00
propagatedBuildInputs = [
2022-11-25 11:25:47 +00:00
kio
kparts
kxmlgui
qtscript
solid
qtquickcontrols2
kdeclarative
kirigami2
kquickcharts
2017-05-16 15:56:41 +00:00
];
2017-09-25 13:40:41 +00:00
outputs = [ "out" "dev" ];
}