37 lines
878 B
Nix
37 lines
878 B
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
stdenvNoCC,
|
|
}:
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "fcitx5-pinyin-zhwiki";
|
|
version = "0.2.5";
|
|
date = "20250731";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/felixonmars/fcitx5-pinyin-zhwiki/releases/download/${finalAttrs.version}/zhwiki-${finalAttrs.date}.dict";
|
|
hash = "sha256-pS2fVLfihJGgKA1XsW1x0VanfhjHgDGtsqedpmvdUnE=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 $src $out/share/fcitx5/pinyin/dictionaries/zhwiki.dict
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Fcitx 5 pinyin dictionary from zh.wikipedia.org";
|
|
homepage = "https://github.com/felixonmars/fcitx5-pinyin-zhwiki";
|
|
license = with lib.licenses; [
|
|
unlicense
|
|
cc-by-sa-40
|
|
];
|
|
maintainers = with lib.maintainers; [ Guanran928 ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|