1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

hunspellDicts: add Czech and Slovak dictionary

This commit is contained in:
Martin Milata 2020-02-13 21:03:35 +01:00
parent 873a6650bb
commit af5c8e7a2a

View file

@ -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 ];
};
}