nixpkgs/pkgs/desktops/kde-5/frameworks-5.21/krunner.nix

15 lines
406 B
Nix
Raw Normal View History

2016-04-21 15:32:21 +00:00
{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons
, ki18n, kio, kservice, plasma-framework, qtquick1, solid
, threadweaver
}:
kdeFramework {
name = "krunner";
2016-04-28 16:02:03 +00:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-04-21 15:32:21 +00:00
nativeBuildInputs = [ extra-cmake-modules ];
2016-04-28 16:02:03 +00:00
propagatedBuildInputs = [
kconfig kcoreaddons ki18n kio kservice plasma-framework qtquick1 solid
threadweaver
2016-04-21 15:32:21 +00:00
];
}