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 { mkDerivation
, extra-cmake-modules , extra-cmake-modules
, aspell, qtbase, qttools , aspell, hunspell, qtbase, qttools
}: }:
mkDerivation { mkDerivation {
pname = "sonnet"; pname = "sonnet";
nativeBuildInputs = [ extra-cmake-modules ]; nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ aspell qttools ]; buildInputs = [ aspell hunspell qttools ];
propagatedBuildInputs = [ qtbase ]; propagatedBuildInputs = [ qtbase ];
} }