summary refs log blame commit diff
path: root/pkgs/development/libraries/kde-frameworks/kdnssd.nix
blob: 18a435139f6f4ee5e18804e25ee9aeaee8c4c5aa (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                   

                              



                  



                                                                 
                                                      
                                    
                           
 
{ kdeFramework, lib
, extra-cmake-modules, qttools
, avahi, qtbase
}:

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