mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
34 lines
462 B
Nix
34 lines
462 B
Nix
|
{ mkDerivation
|
||
|
, lib
|
||
|
, extra-cmake-modules
|
||
|
, kdoctools
|
||
|
, kconfig
|
||
|
, kio
|
||
|
, ki18n
|
||
|
, kservice
|
||
|
, kfilemetadata
|
||
|
, baloo
|
||
|
, kdelibs4support
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
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 ];
|
||
|
};
|
||
|
}
|