.files/nix/overlays/fcitx5-table-extra-taiwanese.nix
Léana 江 fd74b36a36
Revert "fcitx5-table-extra: patch to wordlist dvorak"
The patch is incorrect.
We have a , being unusable problem, since comma is W on dvorak

This reverts commit 522de0a6b8.
2025-09-19 17:56:44 +08:00

18 lines
413 B
Nix

let
sources = import ../../npins;
in
final: prev: {
fcitx5-table-extra = prev.fcitx5-table-extra.overrideAttrs (oldAttrs: {
src = sources.fcitx5-table-extra;
nativeBuildInputs =
oldAttrs.nativeBuildInputs or []
++ [
final.python3
];
preConfigure =
oldAttrs.preConfigure or ""
+ ''
python3 ./generate.py
'';
});
}