mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
18 lines
487 B
Nix
18 lines
487 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
kconfig, kcoreaddons, ki18n, kio, kservice, plasma-framework, qtbase,
|
|
qtdeclarative, solid, threadweaver, kwindowsystem
|
|
}:
|
|
|
|
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 ];
|
|
}
|