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

15 lines
268 B
Nix
Raw Normal View History

2016-04-21 18:32:21 +03:00
{ kdeFramework, lib
, extra-cmake-modules
, kconfig
, kwidgetsaddons
}:
kdeFramework {
name = "kcompletion";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kconfig kwidgetsaddons ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}