mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
18 lines
416 B
Nix
18 lines
416 B
Nix
let
|
|
sources = import ../sources.nix;
|
|
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
|
|
'';
|
|
});
|
|
}
|