summary refs log tree commit diff
path: root/pkgs/development/libraries/hunspell
diff options
context:
space:
mode:
authorMartin Milata <martin@martinmilata.cz>2020-02-13 21:03:35 +0100
committerMartin Milata <martin@martinmilata.cz>2020-02-13 21:12:37 +0100
commitaf5c8e7a2aad2ef9f940270d25141ddd498ce516 (patch)
tree725a88574ee25ceabe7b59ddff15c1dd58475a11 /pkgs/development/libraries/hunspell
parent873a6650bbe68cf5f781fb32c1e77ca7fc9868e9 (diff)
downloadnixpkgs-af5c8e7a2aad2ef9f940270d25141ddd498ce516.tar
nixpkgs-af5c8e7a2aad2ef9f940270d25141ddd498ce516.tar.gz
nixpkgs-af5c8e7a2aad2ef9f940270d25141ddd498ce516.tar.bz2
nixpkgs-af5c8e7a2aad2ef9f940270d25141ddd498ce516.tar.lz
nixpkgs-af5c8e7a2aad2ef9f940270d25141ddd498ce516.tar.xz
nixpkgs-af5c8e7a2aad2ef9f940270d25141ddd498ce516.tar.zst
nixpkgs-af5c8e7a2aad2ef9f940270d25141ddd498ce516.zip
hunspellDicts: add Czech and Slovak dictionary
Diffstat (limited to 'pkgs/development/libraries/hunspell')
-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 386a18f641f..9ec79f51443 100644
--- a/pkgs/development/libraries/hunspell/dictionaries.nix
+++ b/pkgs/development/libraries/hunspell/dictionaries.nix
@@ -732,4 +732,26 @@ in rec {
     shortDescription = "Russian (Russian)";
     license = with stdenv.lib.licenses; [ mpl20 lgpl3 ];
   };
+
+  /* CZECH */
+
+  cs_CZ = cs-cz;
+  cs-cz = mkDictFromLibreOffice {
+    shortName = "cs-cz";
+    dictFileName = "cs_CZ";
+    shortDescription = "Czech (Czechia)";
+    readmeFile = "README_cs.txt";
+    license = with stdenv.lib.licenses; [ gpl2 ];
+  };
+
+  /* SLOVAK */
+
+  sk_SK = sk-sk;
+  sk-sk = mkDictFromLibreOffice {
+    shortName = "sk-sk";
+    dictFileName = "sk_SK";
+    shortDescription = "Slovak (Slovakia)";
+    readmeFile = "README_sk.txt";
+    license = with stdenv.lib.licenses; [ gpl2 lgpl21 mpl11 ];
+  };
 }