summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kdnssd.nix
blob: ad86b660c747fdb0f8de364dc71e8062fa64629c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ kdeFramework, lib
, extra-cmake-modules, qttools
, avahi, qtbase
}:

kdeFramework {
  name = "kdnssd";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules qttools ];
  propagatedBuildInputs = [ avahi ];
  buildInputs = [ qtbase ];
}