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:
parent
db54eed69c
commit
b2298b02cf
|
@ -35,6 +35,7 @@ let
|
||||||
dolphin = callPackage ./dolphin.nix {};
|
dolphin = callPackage ./dolphin.nix {};
|
||||||
dolphin-plugins = callPackage ./dolphin-plugins.nix {};
|
dolphin-plugins = callPackage ./dolphin-plugins.nix {};
|
||||||
ffmpegthumbs = callPackage ./ffmpegthumbs.nix {};
|
ffmpegthumbs = callPackage ./ffmpegthumbs.nix {};
|
||||||
|
filelight = callPackage ./filelight.nix {};
|
||||||
gpgmepp = callPackage ./gpgmepp.nix {};
|
gpgmepp = callPackage ./gpgmepp.nix {};
|
||||||
gwenview = callPackage ./gwenview.nix {};
|
gwenview = callPackage ./gwenview.nix {};
|
||||||
kate = callPackage ./kate.nix {};
|
kate = callPackage ./kate.nix {};
|
||||||
|
|
35
pkgs/applications/kde-apps-15.12/filelight.nix
Normal file
35
pkgs/applications/kde-apps-15.12/filelight.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue