nixpkgs/pkgs/applications/kde-apps-15.08/baloo-widgets.nix

34 lines
450 B
Nix
Raw Normal View History

{ kdeApp
2015-09-27 18:03:46 +03:00
, lib
, extra-cmake-modules
, kdoctools
, kconfig
, kio
, ki18n
, kservice
, kfilemetadata
, baloo
, kdelibs4support
}:
kdeApp {
2015-09-27 18:03:46 +03:00
name = "baloo-widgets";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
kconfig
kio
ki18n
kservice
kfilemetadata
baloo
kdelibs4support
];
meta = {
license = [ lib.licenses.lgpl21 ];
maintainers = [ lib.maintainers.ttuegel ];
};
}