nixpkgs/pkgs/applications/kde/dolphin.nix

33 lines
1 KiB
Nix
Raw Normal View History

{
2016-07-30 21:16:36 +00:00
kdeApp, lib, kdeWrapper,
extra-cmake-modules, kdoctools, makeQtWrapper,
2016-07-30 21:16:36 +00:00
baloo, baloo-widgets, dolphin-plugins, kactivities, kbookmarks, kcmutils,
kcompletion, kconfig, kcoreaddons, kdelibs4support, kdbusaddons,
kfilemetadata, ki18n, kiconthemes, kinit, kio, knewstuff, knotifications,
2016-08-01 20:31:14 +00:00
konsole, kparts, ktexteditor, kwindowsystem, phonon, solid
}:
2016-07-30 21:16:36 +00:00
let
unwrapped =
kdeApp {
name = "dolphin";
meta = {
license = with lib.licenses; [ gpl2 fdl12 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
2016-07-30 21:16:36 +00:00
propagatedBuildInputs = [
baloo baloo-widgets kactivities kbookmarks kcmutils kcompletion kconfig
kcoreaddons kdelibs4support kdbusaddons kfilemetadata ki18n kiconthemes
kinit kio knewstuff knotifications kparts ktexteditor kwindowsystem
phonon solid
];
};
in
kdeWrapper
2016-07-30 21:16:36 +00:00
{
inherit unwrapped;
2016-07-30 21:16:36 +00:00
targets = [ "bin/dolphin" ];
2016-08-01 20:31:14 +00:00
paths = [ dolphin-plugins konsole.unwrapped ];
}