nixpkgs/pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix
2016-04-25 19:04:24 -05:00

15 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 ];
};
}