about summary refs log tree commit diff
path: root/pkgs/applications/kde/dolphin-plugins.nix
blob: eb823641ae446755abfdbaf862c910307d3f8083 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  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
  ];
}