15 lines
406 B
Nix
15 lines
406 B
Nix
{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons
|
|
, ki18n, kio, kservice, plasma-framework, qtquick1, solid
|
|
, threadweaver
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "krunner";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [
|
|
kconfig kcoreaddons ki18n kio kservice plasma-framework qtquick1 solid
|
|
threadweaver
|
|
];
|
|
}
|