nixpkgs/pkgs/applications/kde/filelight.nix

25 lines
520 B
Nix
Raw Normal View History

{
2016-07-31 01:27:03 +03:00
kdeApp, lib, kdeWrapper,
extra-cmake-modules, kdoctools,
kio, kparts, kxmlgui, qtscript, solid
}:
2016-07-31 01:27:03 +03:00
let
unwrapped =
kdeApp {
name = "filelight";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ fridh vcunat ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2016-07-31 01:27:03 +03:00
propagatedBuildInputs = [
kio kparts kxmlgui qtscript solid
];
};
in
kdeWrapper {
inherit unwrapped;
targets = [ "bin/filelight" ];
}