summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.13/kcompletion.nix
blob: e393774f16a5265616076c83cd2c365074de7779 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ kdeFramework, lib
, extra-cmake-modules
, kconfig
, kwidgetsaddons
}:

kdeFramework {
  name = "kcompletion";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ kconfig kwidgetsaddons ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}