nixpkgs/pkgs/development/libraries/kde-frameworks-5.13/kcompletion.nix

15 lines
268 B
Nix
Raw Normal View History

{ kdeFramework, lib
2015-09-27 16:02:10 +01:00
, extra-cmake-modules
, kconfig
, kwidgetsaddons
}:
kdeFramework {
2015-09-27 16:02:10 +01:00
name = "kcompletion";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kconfig kwidgetsaddons ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}