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