summary refs log tree commit diff
path: root/pkgs/applications/kde/baloo-widgets.nix
blob: 3479b6600fc9671caacebe17b07189788e8c41ad (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,
  baloo, kconfig, kdelibs4support, kfilemetadata, ki18n, kio, kservice
}:

mkDerivation {
  name = "baloo-widgets";
  meta = {
    license = [ lib.licenses.lgpl21 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  propagatedBuildInputs = [
    baloo kconfig kdelibs4support kfilemetadata ki18n kio kservice
  ];
  outputs = [ "out" "dev" ];
}