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

25 lines
437 B
Nix
Raw Normal View History

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