From e14843556cb4ed2286c6752a32abf85beec0e19c Mon Sep 17 00:00:00 2001 From: Ilan Joselevich Date: Tue, 8 Jun 2021 22:10:55 +0300 Subject: [PATCH] hunspellDicts: add Hebrew dictionary --- pkgs/development/libraries/hunspell/dictionaries.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pkgs/development/libraries/hunspell/dictionaries.nix b/pkgs/development/libraries/hunspell/dictionaries.nix index f1bcd4ad00c0..f2c6165df844 100644 --- a/pkgs/development/libraries/hunspell/dictionaries.nix +++ b/pkgs/development/libraries/hunspell/dictionaries.nix @@ -784,4 +784,15 @@ in rec { maintainers = with maintainers; [ louisdk1 ]; }; }; + + /* HEBREW */ + + he_IL = he-il; + he-il = mkDictFromLibreOffice { + shortName = "he-il"; + dictFileName = "he_IL"; + shortDescription = "Hebrew (Israel)"; + readmeFile = "README_he_IL.txt"; + license = with lib.licenses; [ agpl3Plus ]; + }; }