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

  
              
                 

                                              
                                                                 
    
                                              
                                                    
                                           
 
{
  mkDerivation, lib,
  extra-cmake-modules, gettext, python3,
  qtbase, qtdeclarative, qtscript,
}:

mkDerivation {
  name = "ki18n";
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
    broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedNativeBuildInputs = [ gettext python3 ];
  buildInputs = [ qtdeclarative qtscript ];
}