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

15 lines
355 B
Nix
Raw Normal View History

2016-07-30 14:36:52 +00:00
{ kdeFramework, lib, ecm, kconfig, kcoreaddons
2016-05-11 01:08:37 +00:00
, ki18n, kio, kservice, plasma-framework, solid
2016-04-21 15:32:21 +00:00
, threadweaver
}:
kdeFramework {
name = "krunner";
2016-04-28 16:02:03 +00:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-07-30 14:36:52 +00:00
nativeBuildInputs = [ ecm ];
2016-04-28 16:02:03 +00:00
propagatedBuildInputs = [
2016-05-11 01:08:37 +00:00
kconfig kcoreaddons ki18n kio kservice plasma-framework solid
2016-04-28 16:02:03 +00:00
threadweaver
2016-04-21 15:32:21 +00:00
];
}