summary refs log tree commit diff
path: root/pkgs/development/libraries/hunspell/dictionaries.nix
diff options
context:
space:
mode:
authorAndrei Lapshin <alapshin@fastmail.com>2019-11-04 13:06:18 +0300
committerAndrei Lapshin <alapshin@fastmail.com>2019-11-04 17:31:20 +0300
commited2484f48a5c589564f6d4fc1068e0a55a0c03d2 (patch)
tree91faa6da0851a84b2cbee77b231e84d36c3c5525 /pkgs/development/libraries/hunspell/dictionaries.nix
parent062a4d4081533812592c43ddb48f6b022f2e04f5 (diff)
downloadnixpkgs-ed2484f48a5c589564f6d4fc1068e0a55a0c03d2.tar
nixpkgs-ed2484f48a5c589564f6d4fc1068e0a55a0c03d2.tar.gz
nixpkgs-ed2484f48a5c589564f6d4fc1068e0a55a0c03d2.tar.bz2
nixpkgs-ed2484f48a5c589564f6d4fc1068e0a55a0c03d2.tar.lz
nixpkgs-ed2484f48a5c589564f6d4fc1068e0a55a0c03d2.tar.xz
nixpkgs-ed2484f48a5c589564f6d4fc1068e0a55a0c03d2.tar.zst
nixpkgs-ed2484f48a5c589564f6d4fc1068e0a55a0c03d2.zip
hunspell-dicts: add Russian dictionary
Diffstat (limited to 'pkgs/development/libraries/hunspell/dictionaries.nix')
-rw-r--r--pkgs/development/libraries/hunspell/dictionaries.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/development/libraries/hunspell/dictionaries.nix b/pkgs/development/libraries/hunspell/dictionaries.nix
index 3e1799d82cd..fb64aa81d1a 100644
--- a/pkgs/development/libraries/hunspell/dictionaries.nix
+++ b/pkgs/development/libraries/hunspell/dictionaries.nix
@@ -722,4 +722,14 @@ in rec {
       platforms = platforms.all;
     };
   };
+
+  /* RUSSIAN */
+
+  ru_RU = ru-ru;
+  ru-ru = mkDictFromLibreOffice {
+    shortName = "ru-ru";
+    dictFileName = "ru_RU";
+    shortDescription = "Russian (Russian)";
+    license = with stdenv.lib.licenses; [ mpl20 lgpl3 ];
+  };
 }