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.
This commit is contained in:
K900 2023-10-15 20:06:33 +03:00
parent 080f3eff01
commit 22dc5c7ee0

View File

@ -1,11 +1,11 @@
{ mkDerivation
, extra-cmake-modules
, aspell, qtbase, qttools
, aspell, hunspell, qtbase, qttools
}:
mkDerivation {
pname = "sonnet";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ aspell qttools ];
buildInputs = [ aspell hunspell qttools ];
propagatedBuildInputs = [ qtbase ];
}