From 7e071839da3559019d33b1250cea76a9dc34a65c Mon Sep 17 00:00:00 2001 From: Yury Bulka Date: Sun, 13 Nov 2022 14:31:24 +0200 Subject: [PATCH] hunspellDicts: add pl-pl --- pkgs/development/libraries/hunspell/dictionaries.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/development/libraries/hunspell/dictionaries.nix b/pkgs/development/libraries/hunspell/dictionaries.nix index 1f1f5a687a4..7ca6efe4337 100644 --- a/pkgs/development/libraries/hunspell/dictionaries.nix +++ b/pkgs/development/libraries/hunspell/dictionaries.nix @@ -902,4 +902,16 @@ rec { platforms = platforms.all; }; }; + + /* POLISH */ + + pl_PL = pl-pl; + pl-pl = mkDictFromLibreOffice { + shortName = "pl-pl"; + dictFileName = "pl_PL"; + shortDescription = "Polish (Poland)"; + readmeFile = "README_en.txt"; + # the README doesn't specify versions of licenses :/ + license = with lib.licenses; [ gpl2Plus lgpl2Plus mpl10 asl20 cc-by-sa-25 ]; + }; }