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

mkDerivation {
  name = "kcompletion";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ kconfig kwidgetsaddons qttools ];
  propagatedBuildInputs = [ qtbase ];
  outputs = [ "out" "dev" ];
}