summary refs log blame commit diff
path: root/pkgs/development/libraries/kde-frameworks/kcodecs.nix
blob: 978db644a56fd64710a20230a8f617745fbf72c1 (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.7.0" < 0;
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qttools gperf ];
  propagatedBuildInputs = [ qtbase ];
  outputs = [ "out" "dev" ];
}