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

                      

  
              
                    

                                              
                                                                 

                                              


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

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