1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/desktops/kde-5/applications/filelight.nix

25 lines
488 B
Nix
Raw Normal View History

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