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

15 lines
355 B
Nix
Raw Normal View History

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