mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
09af15654f
The kde-5 stuff still didn't merge well. I hand-fixed what I saw, but there may be more problems.
17 lines
429 B
Nix
17 lines
429 B
Nix
{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons
|
|
, ki18n, kio, kservice, plasma-framework, qtquick1, solid
|
|
, threadweaver
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "krunner";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kconfig kcoreaddons kservice qtquick1 solid threadweaver
|
|
];
|
|
propagatedBuildInputs = [ ki18n kio plasma-framework ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|