mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
18 lines
422 B
Nix
18 lines
422 B
Nix
{
|
|
kdeApp, lib,
|
|
extra-cmake-modules, kdoctools,
|
|
baloo, kconfig, kdelibs4support, kfilemetadata, ki18n, kio, kservice
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "baloo-widgets";
|
|
meta = {
|
|
license = [ lib.licenses.lgpl21 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
propagatedBuildInputs = [
|
|
baloo kconfig kdelibs4support kfilemetadata ki18n kio kservice
|
|
];
|
|
}
|