summary refs log tree commit diff
path: root/pkgs/applications/kde/dolphin-plugins.nix
blob: 5580952f40a0e0fc4dd277b67ba32f28034aab5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  dolphin, kdelibs4support, ki18n, kio, kxmlgui
}:

mkDerivation {
  name = "dolphin-plugins";
  meta = {
    license = [ lib.licenses.gpl2 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  propagatedBuildInputs = [
    dolphin kdelibs4support ki18n kio kxmlgui
  ];
  outputs = [ "out" "dev" ];
}