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

17 lines
429 B
Nix
Raw Normal View History

2015-10-10 18:50:36 +02:00
{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons
, ki18n, kio, kservice, plasma-framework, qtquick1, solid
2015-09-27 17:02:10 +02:00
, threadweaver
}:
kdeFramework {
2015-09-27 17:02:10 +02:00
name = "krunner";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
2015-10-10 19:29:20 +02:00
kconfig kcoreaddons kservice qtquick1 solid threadweaver
2015-09-27 17:02:10 +02:00
];
2015-10-10 19:29:20 +02:00
propagatedBuildInputs = [ ki18n kio plasma-framework ];
2015-09-27 17:02:10 +02:00
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}