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:
parent
1b05655971
commit
fb0b48d3af
1 changed files with 4 additions and 0 deletions
|
@ -46,6 +46,10 @@ stdenv.mkDerivation rec {
|
|||
|
||||
configureFlags = [
|
||||
"--enable-relocatable" # needed for tests
|
||||
"--with-aspell"
|
||||
"--with-hspell"
|
||||
"--with-hunspell"
|
||||
"--with-nuspell"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue