Merge pull request #105965 from piegamesde/master

libsForQt5.sonnet: Switch from hunspell to aspell
This commit is contained in:
Thomas Tuegel 2020-12-31 09:49:50 -06:00 committed by GitHub
commit 7138a338b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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