nixpkgs/pkgs/development/libraries/kde-frameworks/krunner.nix

18 lines
487 B
Nix
Raw Normal View History

{
mkDerivation, lib,
extra-cmake-modules,
kconfig, kcoreaddons, ki18n, kio, kservice, plasma-framework, qtbase,
2017-08-18 17:27:38 +00:00
qtdeclarative, solid, threadweaver, kwindowsystem
2016-04-21 15:32:21 +00:00
}:
mkDerivation {
2016-04-21 15:32:21 +00:00
name = "krunner";
2016-04-28 16:02:03 +00:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
kconfig kcoreaddons ki18n kio kservice qtdeclarative solid
2016-04-28 16:02:03 +00:00
threadweaver
2016-04-21 15:32:21 +00:00
];
2017-08-18 17:27:38 +00:00
propagatedBuildInputs = [ plasma-framework qtbase kwindowsystem ];
2016-04-21 15:32:21 +00:00
}