libsForQt5.sonnet: also build the hunspell backend

There are languages that don't have aspell dictionaries, so let's also build hunspell to cover both.

K900 22dc5c7e 080f3eff

+2 -2
+2 -2
pkgs/development/libraries/kde-frameworks/sonnet.nix
··· 1 1 { mkDerivation 2 2 , extra-cmake-modules 3 - , aspell, qtbase, qttools 3 + , aspell, hunspell, qtbase, qttools 4 4 }: 5 5 6 6 mkDerivation { 7 7 pname = "sonnet"; 8 8 nativeBuildInputs = [ extra-cmake-modules ]; 9 - buildInputs = [ aspell qttools ]; 9 + buildInputs = [ aspell hunspell qttools ]; 10 10 propagatedBuildInputs = [ qtbase ]; 11 11 }