nixpkgs/pkgs/desktops/kde-5/applications-16.04/filelight.nix
2016-04-30 12:20:45 -05:00

31 lines
483 B
Nix

{ kdeApp
, lib
, extra-cmake-modules
, kdoctools
, makeQtWrapper
, qtscript
, kio
, solid
, kxmlgui
, kparts
}:
kdeApp {
name = "filelight";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ fridh vcunat ];
};
nativeBuildInputs = [
extra-cmake-modules
kdoctools
makeQtWrapper
];
propagatedBuildInputs = [
kio kparts qtscript solid kxmlgui
];
postInstall = ''
wrapQtProgram "$out/bin/filelight"
'';
}