summary refs log blame commit diff
path: root/pkgs/development/libraries/kde-frameworks/kwayland.nix
blob: 87c0bf847064d4b3d860acf0fc71ca074c3b5aec (plain) (tree)
1
2
3
4
5
6
7
8
 
                    

                      

  
              
                    




                                                                 
                           
                                      
 
{
  mkDerivation, lib,
  extra-cmake-modules,
  qtbase, wayland
}:

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