mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
fcitx5-pinyin-zhwiki: init at 0.2.5
Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
This commit is contained in:
parent
74bc5097dd
commit
df628c5b01
33
pkgs/by-name/fc/fcitx5-pinyin-zhwiki/package.nix
Normal file
33
pkgs/by-name/fc/fcitx5-pinyin-zhwiki/package.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
lib,
|
||||
fetchurl,
|
||||
stdenvNoCC,
|
||||
}:
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "fcitx5-pinyin-zhwiki";
|
||||
version = "0.2.5";
|
||||
date = "20240509";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/felixonmars/fcitx5-pinyin-zhwiki/releases/download/${finalAttrs.version}/zhwiki-${finalAttrs.date}.dict";
|
||||
hash = "sha256-uRpKPq+/xJ8akKB8ol/JRF79VfDIQ8L4SxLDXzpfPxg=";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user