summary refs log tree commit diff
path: root/pkgs/applications/kde/dolphin.nix
blob: 6515c230c284891dff2ce7af324e47cd530dec99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  kdeApp, lib, kdeWrapper,
  extra-cmake-modules, kdoctools, makeQtWrapper,
  baloo, baloo-widgets, dolphin-plugins, kactivities, kbookmarks, kcmutils,
  kcompletion, kconfig, kcoreaddons, kdelibs4support, kdbusaddons,
  kfilemetadata, ki18n, kiconthemes, kinit, kio, knewstuff, knotifications,
  konsole, kparts, ktexteditor, kwindowsystem, phonon, solid
}:

let
  unwrapped =
    kdeApp {
      name = "dolphin";
      meta = {
        license = with lib.licenses; [ gpl2 fdl12 ];
        maintainers = [ lib.maintainers.ttuegel ];
      };
      nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
      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
{
  inherit unwrapped;
  targets = [ "bin/dolphin" ];
  paths = [ dolphin-plugins konsole.unwrapped ];
}