From 2f7103e79cacf8925229fd06b8e25e9d21ecc7f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sat, 31 May 2025 12:50:10 +0200 Subject: [PATCH] Use my patch of cangjie table --- nix/configurations/vanadium/overlay.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nix/configurations/vanadium/overlay.nix b/nix/configurations/vanadium/overlay.nix index 18c1d901..07538f52 100644 --- a/nix/configurations/vanadium/overlay.nix +++ b/nix/configurations/vanadium/overlay.nix @@ -43,4 +43,15 @@ in ./patches/fcitx5-chinese-addons/disable-fullwidth.patch # Note: disabling pinyin helper breaks canjie ]; + fcitx5-table-extra.__output.src = _: final.fetchFromGitHub { + owner = "leana8959"; + repo = "fcitx5-table-extra"; + rev = "3fb844280a5154389be17e422a98ad89cafccc38"; + hash = "sha256-8iGNQYQH8tT3p6VedVBgfxHqXVLkFEiDEd1H7CBFXqg="; + fetchSubmodules = true; + }; + fcitx5-table-extra.__output.nativeBuildInputs.__append = [ final.python3 ]; + fcitx5-table-extra.__output.preConfigure.__prepend = '' + python3 ./generate.py + ''; })