mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
The patch is incorrect.
We have a , being unusable problem, since comma is W on dvorak
This reverts commit 522de0a6b8.
18 lines
413 B
Nix
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
|
|
'';
|
|
});
|
|
}
|