libsForQt5.sonnet: Switch from hunspell to aspell

Hunspell does not work, while aspell does. Closes #26654.
This commit is contained in:
piegames 2020-12-05 13:17:32 +01:00
parent eefdca1bcf
commit 25290cc980

View File

@ -1,6 +1,6 @@
{ mkDerivation, lib
, extra-cmake-modules
, hunspell, qtbase, qttools
, aspell, qtbase, qttools
}:
mkDerivation {
@ -10,6 +10,6 @@ mkDerivation {
broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ hunspell qttools ];
buildInputs = [ aspell qttools ];
propagatedBuildInputs = [ qtbase ];
}