From 7ea8027446cf858e941e3277200f3254ab8863ad Mon Sep 17 00:00:00 2001 From: Vladyslav M Date: Sat, 6 Apr 2019 16:05:28 +0300 Subject: [PATCH] hunspellDicts.uk-ua: init at 4.2.5 --- .../libraries/hunspell/dictionaries.nix | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/pkgs/development/libraries/hunspell/dictionaries.nix b/pkgs/development/libraries/hunspell/dictionaries.nix index aeb4253826b8..08ef667b24eb 100644 --- a/pkgs/development/libraries/hunspell/dictionaries.nix +++ b/pkgs/development/libraries/hunspell/dictionaries.nix @@ -582,4 +582,32 @@ in { shortDescription = "German (Switzerland)"; dictFileName = "de_CH"; }; + + /* UKRAINIAN */ + + uk-ua = mkDict rec { + name = "hunspell-dict-uk-ua-${version}"; + version = "4.2.5"; + _version = "4-2.5"; + + src = fetchurl { + url = "https://extensions.libreoffice.org/extensions/ukrainian-spelling-dictionary-and-thesaurus/${_version}/@@download/file/dict-uk_UA-${version}.oxt"; + sha256 = "1s2i9cd569g97kafrswczvwmvg7m9aks8qsbxd1mi73zy2y1r7n4"; + }; + + dictFileName = "uk_UA"; + readmeFile = "README_uk_UA.txt"; + nativeBuildInputs = [ unzip ]; + unpackCmd = '' + unzip $src ${dictFileName}/{${dictFileName}.dic,${dictFileName}.aff,${readmeFile}} + ''; + + meta = with stdenv.lib; { + description = "Hunspell dictionary for Ukrainian (Ukraine) from LibreOffice"; + homepage = https://extensions.libreoffice.org/extensions/ukrainian-spelling-dictionary-and-thesaurus/; + license = licenses.mpl20; + maintainers = with maintainers; [ dywedir ]; + platforms = platforms.all; + }; + }; }