summary refs log tree commit diff
diff options
context:
space:
mode:
authorYury Bulka <setthemfree@privacyrequired.com>2022-11-13 14:31:24 +0200
committerYury Bulka <setthemfree@privacyrequired.com>2023-04-01 22:46:23 +0300
commit7e071839da3559019d33b1250cea76a9dc34a65c (patch)
tree2601bd95c288e7bc83e503a6df1b8b9c2e49b13b
parent5e1206f7ed6c96a85a38ec47c1a1f9ebce207165 (diff)
downloadnixpkgs-7e071839da3559019d33b1250cea76a9dc34a65c.tar
nixpkgs-7e071839da3559019d33b1250cea76a9dc34a65c.tar.gz
nixpkgs-7e071839da3559019d33b1250cea76a9dc34a65c.tar.bz2
nixpkgs-7e071839da3559019d33b1250cea76a9dc34a65c.tar.lz
nixpkgs-7e071839da3559019d33b1250cea76a9dc34a65c.tar.xz
nixpkgs-7e071839da3559019d33b1250cea76a9dc34a65c.tar.zst
nixpkgs-7e071839da3559019d33b1250cea76a9dc34a65c.zip
hunspellDicts: add pl-pl
-rw-r--r--pkgs/development/libraries/hunspell/dictionaries.nix12
1 files changed, 12 insertions, 0 deletions
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 ];
+  };
 }