nixpkgs/pkgs/applications/kde/filelight.nix

25 lines
532 B
Nix
Raw Normal View History

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