62 lines
1.7 KiB
Nix
62 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchzip,
|
|
dict-type ? "core",
|
|
}:
|
|
|
|
let
|
|
pname = "sudachidict";
|
|
version = "20241021";
|
|
|
|
srcs = {
|
|
core = fetchzip {
|
|
url = "https://github.com/WorksApplications/SudachiDict/releases/download/v${version}/sudachi-dictionary-${version}-core.zip";
|
|
hash = "sha256-wLcRhR4TCazRxDMKXYZ8T5Vn+rnY6aJmwExIpTIAyeE=";
|
|
};
|
|
small = fetchzip {
|
|
url = "https://github.com/WorksApplications/SudachiDict/releases/download/v${version}/sudachi-dictionary-${version}-small.zip";
|
|
hash = "sha256-Qhp9seFCnLnLLWoQ2izDVKcdca+xZE1s+SCqfj0d3sU=";
|
|
};
|
|
full = fetchzip {
|
|
url = "https://github.com/WorksApplications/SudachiDict/releases/download/v${version}/sudachi-dictionary-${version}-full.zip";
|
|
hash = "sha256-8nlUDGHUKrZ0ZFEnnL4rHiu2ybyW25G6Bm6vF4smxWE=";
|
|
};
|
|
};
|
|
in
|
|
|
|
lib.checkListOfEnum "${pname}: dict-type" [ "core" "full" "small" ] [ dict-type ]
|
|
|
|
stdenvNoCC.mkDerivation
|
|
{
|
|
inherit pname version;
|
|
|
|
src = srcs.${dict-type};
|
|
|
|
dontConfigure = true;
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 system_${dict-type}.dic $out/share/system.dic
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
dict-type = dict-type;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Lexicon for Sudachi";
|
|
homepage = "https://github.com/WorksApplications/SudachiDict";
|
|
changelog = "https://github.com/WorksApplications/SudachiDict/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ natsukium ];
|
|
platforms = platforms.all;
|
|
# it is a waste of space and time to build this package in hydra since it is just data
|
|
hydraPlatforms = [ ];
|
|
};
|
|
}
|