mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
hunspell-dict-tok: init at 20220829
This commit is contained in:
parent
68c387c298
commit
4add2dd5c6
@ -1,6 +1,6 @@
|
||||
/* hunspell dictionaries */
|
||||
|
||||
{ lib, stdenv, fetchurl, fetchFromGitHub, unzip, coreutils, bash, which, zip, ispell, perl, hunspell }:
|
||||
{ lib, stdenv, fetchurl, fetchzip, fetchFromGitHub, unzip, coreutils, bash, which, zip, ispell, perl, hunspell }:
|
||||
|
||||
|
||||
let
|
||||
@ -878,4 +878,28 @@ rec {
|
||||
shortDescription = "Norwegian Nynorsk (Norway)";
|
||||
license = with lib.licenses; [ gpl2Only ];
|
||||
};
|
||||
|
||||
/* TOKI PONA */
|
||||
|
||||
tok = mkDict rec {
|
||||
pname = "hunspell-dict-tok";
|
||||
version = "20220829";
|
||||
dictFileName = "tok";
|
||||
readmeFile = "README.en.adoc";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/somasis/hunspell-tok/releases/download/${version}/hunspell-tok-${version}.tar.gz";
|
||||
sha256 = "sha256-RiAODKXPUeIcf8IFcU6Tacehq5S8GYuPTuxEiN2CXD0=";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Hunspell dictionary for Toki Pona";
|
||||
homepage = "https://github.com/somasis/hunspell-tok";
|
||||
license = with lib.licenses; [ cc0 publicDomain cc-by-sa-30 cc-by-sa-40 ];
|
||||
maintainers = with maintainers; [ somasis ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user