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

mkDerivation {
  name = "kdnssd";
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
    broken = builtins.compareVersions qtbase.version "5.6.0" < 0;
  };
  nativeBuildInputs = [ extra-cmake-modules qttools ];
  propagatedBuildInputs = [ avahi qtbase ];
}