lol

Merge pull request #190675 from imsofi/pr/hunspell-dicts/norwegian

authored by

Naïm Favier and committed by
GitHub
01bf302d dfb35cb5

+22
+22
pkgs/development/libraries/hunspell/dictionaries.nix
··· 856 856 readmeFile = "README_hr_HR.txt"; 857 857 license = with lib.licenses; [ gpl2Only lgpl21Only mpl11 ]; 858 858 }; 859 + 860 + /* NORWEGIAN */ 861 + 862 + nb_NO = nb-no; 863 + nb-no = mkDictFromLibreOffice { 864 + shortName = "nb-no"; 865 + dictFileName = "nb_NO"; 866 + sourceRoot = "no"; 867 + readmeFile = "README_hyph_NO.txt"; 868 + shortDescription = "Norwegian Bokmål (Norway)"; 869 + license = with lib.licenses; [ gpl2Only ]; 870 + }; 871 + 872 + nn_NO = nn-no; 873 + nn-no = mkDictFromLibreOffice { 874 + shortName = "nn-no"; 875 + dictFileName = "nn_NO"; 876 + sourceRoot = "no"; 877 + readmeFile = "README_hyph_NO.txt"; 878 + shortDescription = "Norwegian Nynorsk (Norway)"; 879 + license = with lib.licenses; [ gpl2Only ]; 880 + }; 859 881 }