nixpkgs/pkgs/desktops/kde-5/frameworks/kcompletion.nix

13 lines
272 B
Nix

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