diff --git a/pkgs/development/libraries/hunspell/dictionaries.nix b/pkgs/development/libraries/hunspell/dictionaries.nix index b6c4c4e6570c..3eee425d4be8 100644 --- a/pkgs/development/libraries/hunspell/dictionaries.nix +++ b/pkgs/development/libraries/hunspell/dictionaries.nix @@ -856,4 +856,26 @@ rec { readmeFile = "README_hr_HR.txt"; license = with lib.licenses; [ gpl2Only lgpl21Only mpl11 ]; }; + + /* NORWEGIAN */ + + nb_NO = nb-no; + nb-no = mkDictFromLibreOffice { + shortName = "nb-no"; + dictFileName = "nb_NO"; + sourceRoot = "no"; + readmeFile = "README_hyph_NO.txt"; + shortDescription = "Norwegian Bokmål (Norway)"; + license = with lib.licenses; [ gpl2Only ]; + }; + + nn_NO = nn-no; + nn-no = mkDictFromLibreOffice { + shortName = "nn-no"; + dictFileName = "nn_NO"; + sourceRoot = "no"; + readmeFile = "README_hyph_NO.txt"; + shortDescription = "Norwegian Nynorsk (Norway)"; + license = with lib.licenses; [ gpl2Only ]; + }; }