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



                                                                 

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

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