mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
25 lines
437 B
Nix
25 lines
437 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 ki18n kio kservice qtquick1 solid threadweaver
|
|
];
|
|
propagatedBuildInputs = [ plasma-framework ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|