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

36 lines
483 B
Nix
Raw Normal View History

{ kdeApp
2015-09-27 17:03:46 +02:00
, lib
, extra-cmake-modules
, kdoctools
, kconfig
, kio
, ki18n
, kservice
, kfilemetadata
, baloo
, kdelibs4support
}:
kdeApp {
2015-09-27 17:03:46 +02:00
name = "baloo-widgets";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
kconfig
kservice
];
2015-10-10 16:52:10 +02:00
propagatedBuildInputs = [
baloo
2015-10-10 18:19:37 +02:00
kdelibs4support
2015-10-10 18:25:16 +02:00
kfilemetadata
2015-10-10 18:50:36 +02:00
ki18n
2015-10-10 19:29:20 +02:00
kio
2015-10-10 16:52:10 +02:00
];
2015-09-27 17:03:46 +02:00
meta = {
license = [ lib.licenses.lgpl21 ];
maintainers = [ lib.maintainers.ttuegel ];
};
}