1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-17 02:14:36 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks/kded.nix

14 lines
359 B
Nix
Raw Normal View History

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