mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
hunspellDicts: add Czech and Slovak dictionary
This commit is contained in:
parent
873a6650bb
commit
af5c8e7a2a
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user