Merge pull request #223650 from vlaci/fix-enchant-nuspell
fix nuspell provider for enchant
This commit is contained in:
commit
127fd8170e
2 changed files with 5 additions and 1 deletions
|
@ -46,6 +46,10 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--enable-relocatable" # needed for tests
|
"--enable-relocatable" # needed for tests
|
||||||
|
"--with-aspell"
|
||||||
|
"--with-hspell"
|
||||||
|
"--with-hunspell"
|
||||||
|
"--with-nuspell"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config ];
|
nativeBuildInputs = [ cmake pkg-config ];
|
||||||
buildInputs = [ icu ];
|
propagatedBuildInputs = [ icu ];
|
||||||
|
|
||||||
outputs = [ "out" "lib" "dev" ];
|
outputs = [ "out" "lib" "dev" ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue