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

                           

  
              
                  

                                              
                                                                 
    


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

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