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

  
              
                         

                                              
                                                                 
    
                                              
                                                                 
                                     

                                                                  
                                                                                       
     
                            
 
{
  mkDerivation, lib, copyPathsToStore,
  extra-cmake-modules,
  libpthreadstubs, libXdmcp,
  qtbase, qttools, qtx11extras
}:

mkDerivation {
  name = "kwindowsystem";
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
    broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ libpthreadstubs libXdmcp qttools qtx11extras ];
  propagatedBuildInputs = [ qtbase ];
  patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
  preConfigure = ''
    NIX_CFLAGS_COMPILE+=" -DNIXPKGS_QT_PLUGIN_PATH=\"''${!outputBin}/$qtPluginPrefix\""
  '';
  outputs = [ "out" "dev" ];
}