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



                                                                 
                                              
                                  

                                     
 
{ mkDerivation, lib, extra-cmake-modules, qtbase, qttools, gperf }:

mkDerivation {
  name = "kcodecs";
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
    broken = builtins.compareVersions qtbase.version "5.6.0" < 0;
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qttools gperf ];
  propagatedBuildInputs = [ qtbase ];
  outputs = [ "out" "dev" ];
}