enchant: explicitly enable required providers

leaving provider detection to the build process is error-prone, as a
missing or invalid dependency will just result in the derivation being
built without it enabled.

As of now, the nuspell provider is not buildable:

    configure: error: --with-nuspell was given, but test(s) for nuspell failed
This commit is contained in:
László Vaskó 2023-03-29 00:17:14 +02:00
parent 1b05655971
commit fb0b48d3af

View file

@ -46,6 +46,10 @@ stdenv.mkDerivation rec {
configureFlags = [
"--enable-relocatable" # needed for tests
"--with-aspell"
"--with-hspell"
"--with-hunspell"
"--with-nuspell"
];
meta = with lib; {