1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/kde-frameworks/krunner.nix

15 lines
387 B
Nix
Raw Normal View History

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