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