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

20 lines
539 B
Nix
Raw Normal View History

{
mkDerivation, lib, fetchpatch,
extra-cmake-modules,
kconfig, kcoreaddons, ki18n, kio, kservice, plasma-framework, qtbase,
2017-08-18 18:27:38 +01:00
qtdeclarative, solid, threadweaver, kwindowsystem
2016-04-21 16:32:21 +01:00
}:
let
self = mkDerivation {
name = "krunner";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
kconfig kcoreaddons ki18n kio kservice qtdeclarative solid
threadweaver
];
propagatedBuildInputs = [ plasma-framework qtbase kwindowsystem ];
};
in self