nixpkgs/pkgs/development/libraries/kde-frameworks-5.18/kcompletion.nix
2016-01-10 09:09:40 -06: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 ];
};
}