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

  
              
                    

                                              
                                                                 

                                              
                                              

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

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