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
commit 699d03a2d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 ];
}