3
0
Fork 0
forked from mirrors/nixpkgs

kde5.filelight: init at 15.12 (close #13456)

vcunat also added himself to maintainers,
as filelight has been extremely helpful on closure-size branch.
This commit is contained in:
Frederik Rietdijk 2016-02-25 17:09:54 +01:00 committed by Vladimír Čunát
parent db54eed69c
commit b2298b02cf
2 changed files with 36 additions and 0 deletions

View file

@ -35,6 +35,7 @@ let
dolphin = callPackage ./dolphin.nix {};
dolphin-plugins = callPackage ./dolphin-plugins.nix {};
ffmpegthumbs = callPackage ./ffmpegthumbs.nix {};
filelight = callPackage ./filelight.nix {};
gpgmepp = callPackage ./gpgmepp.nix {};
gwenview = callPackage ./gwenview.nix {};
kate = callPackage ./kate.nix {};

View file

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