Merge pull request #261249 from K900/sonnet-hunspell

libsForQt5.sonnet: also build the hunspell backend
This commit is contained in:
K900
2023-10-17 23:51:44 +03:00
committed by GitHub
@@ -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 ];
}