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



                                                                 

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

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