Merge pull request #223650 from vlaci/fix-enchant-nuspell

fix nuspell provider for enchant
This commit is contained in:
Franz Pletz 2023-04-06 02:50:52 +02:00 committed by GitHub
commit 127fd8170e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

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; {

View file

@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ icu ];
propagatedBuildInputs = [ icu ];
outputs = [ "out" "lib" "dev" ];