about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-10-31 10:53:29 +0100
committerGitHub <noreply@github.com>2022-10-31 10:53:29 +0100
commit01bf302d4ab8a5d515892fc5de45409d5a143297 (patch)
tree59b1b1bc71165018aeed5f6c0e7cc162b6d9205b /pkgs/development/libraries
parentdfb35cb5bd4542035df7a00faba885d6a2fbede2 (diff)
parent363282dc4cd1b18d73c7c8141c051c0c56454126 (diff)
Merge pull request #190675 from imsofi/pr/hunspell-dicts/norwegian
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/hunspell/dictionaries.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/hunspell/dictionaries.nix b/pkgs/development/libraries/hunspell/dictionaries.nix
index b6c4c4e6570cf..3eee425d4be8e 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 ];
+  };
 }