summary refs log tree commit diff
path: root/pkgs/applications/kde/dolphin-plugins.nix
blob: 123b6f0fc268c95b35f0bab501e86786a23de726 (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, ki18n, kio, kxmlgui
}:

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