nixpkgs/pkgs/desktops/kde-5/frameworks-5.19/kcompletion.nix
2016-03-01 10:36:00 -06:00

14 lines
268 B
Nix

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