nixpkgs/pkgs/applications/kde/filelight.nix

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

22 lines
569 B
Nix
Raw Normal View History

{
2017-05-16 15:56:41 +00:00
mkDerivation, lib,
2017-05-17 19:26:11 +00:00
extra-cmake-modules, kdoctools,
2021-02-01 16:43:54 +00:00
kio, kparts, kxmlgui, qtbase, qtscript, solid
}:
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";
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 ];
2021-02-01 16:43:54 +00:00
broken = lib.versionOlder qtbase.version "5.13";
2017-05-16 15:56:41 +00:00
};
2017-05-17 19:26:11 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-05-16 15:56:41 +00:00
propagatedBuildInputs = [
kio kparts kxmlgui qtscript solid
];
2017-09-25 13:40:41 +00:00
outputs = [ "out" "dev" ];
}