nixpkgs/pkgs/development/libraries/kde-frameworks-5.14/kded.nix

20 lines
353 B
Nix
Raw Normal View History

{ kdeFramework, lib
2015-09-27 17:02:10 +02:00
, extra-cmake-modules
, kconfig
, kcoreaddons
, kcrash
, kdbusaddons
, kdoctools
, kinit
, kservice
}:
kdeFramework {
2015-09-27 17:02:10 +02:00
name = "kded";
buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ];
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}