nixpkgs/pkgs/desktops/kde-5/frameworks-5.21/kded.nix

18 lines
357 B
Nix
Raw Normal View History

2016-04-21 15:32:21 +00:00
{ kdeFramework, lib
, extra-cmake-modules
, kconfig
, kcoreaddons
, kcrash
, kdbusaddons
, kdoctools
, kinit
, kservice
}:
kdeFramework {
name = "kded";
2016-04-28 15:50:54 +00:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-04-21 15:32:21 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2016-04-28 15:50:54 +00:00
propagatedBuildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ];
2016-04-21 15:32:21 +00:00
}