5ba93bd4c3
Provides a globally unique name (kdeFramework) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
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 ];
|
|
};
|
|
}
|