nixpkgs/pkgs/development/libraries/kde-frameworks/krunner.nix
2016-07-30 09:36:52 -05:00

15 lines
355 B
Nix

{ kdeFramework, lib, ecm, kconfig, kcoreaddons
, ki18n, kio, kservice, plasma-framework, solid
, threadweaver
}:
kdeFramework {
name = "krunner";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ ecm ];
propagatedBuildInputs = [
kconfig kcoreaddons ki18n kio kservice plasma-framework solid
threadweaver
];
}