mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
20 lines
353 B
Nix
20 lines
353 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kcrash
|
|
, kdbusaddons
|
|
, kdoctools
|
|
, kinit
|
|
, kservice
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kded";
|
|
buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ];
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|