Skip to content

Commit

Permalink
hunspell-dicts: add support for Australian dictionary (#66462)
Browse files Browse the repository at this point in the history
Using the SCOWL dictionaries (same as en_US and en_CA)
  • Loading branch information
Provessor authored and matthewbauer committed Aug 25, 2019
1 parent 3d29aa1 commit 004e9b5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pkgs/development/libraries/hunspell/dictionaries.nix
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,17 @@ in rec {
};
};

en-au = mkDictFromWordlist {
shortName = "en-au";
shortDescription = "English (Australia)";
dictFileName = "en_AU";
src = fetchurl {
url = mirror://sourceforge/wordlist/speller/2018.04.16/hunspell-en_AU-2018.04.16.zip;
sha256 = "1kp06npl1kd05mm9r52cg2iwc13x02zwqgpibdw15b6x43agg6f5";
};
};
en_AU = en-au;

en_GB-ise = en-gb-ise;
en-gb-ise = mkDictFromWordlist {
shortName = "en-gb-ise";
Expand Down

0 comments on commit 004e9b5

Please sign in to comment.