nixpkgs/pkgs/development/libraries/kde-frameworks-5.19/kcompletion.nix
2016-02-14 10:34:58 -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 ];
};
}