faf0d3e91d
- Reduce environment pollution with a separate $bin output containing programs, plugins, and shared data. Libraries remain in $out and are not installed into the environment. - Only propagate build inputs as required.
18 lines
458 B
Nix
18 lines
458 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
kconfig, kcoreaddons, ki18n, kio, kservice, plasma-framework, qtbase,
|
|
qtdeclarative, solid, threadweaver
|
|
}:
|
|
|
|
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 ];
|
|
}
|