mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 01:16:57 +01:00
36 lines
483 B
Nix
36 lines
483 B
Nix
|
{ kdeApp
|
||
|
, lib
|
||
|
, extra-cmake-modules
|
||
|
, kdoctools
|
||
|
, kconfig
|
||
|
, kio
|
||
|
, ki18n
|
||
|
, kservice
|
||
|
, kfilemetadata
|
||
|
, baloo
|
||
|
, kdelibs4support
|
||
|
}:
|
||
|
|
||
|
kdeApp {
|
||
|
name = "baloo-widgets";
|
||
|
nativeBuildInputs = [
|
||
|
extra-cmake-modules
|
||
|
kdoctools
|
||
|
];
|
||
|
buildInputs = [
|
||
|
kconfig
|
||
|
kservice
|
||
|
];
|
||
|
propagatedBuildInputs = [
|
||
|
baloo
|
||
|
kdelibs4support
|
||
|
kfilemetadata
|
||
|
ki18n
|
||
|
kio
|
||
|
];
|
||
|
meta = {
|
||
|
license = [ lib.licenses.lgpl21 ];
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
}
|