mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
packages/ruler: update vanadium/overlays/fcitx5: fix patch vanadium/overlays/fcitx5-chinese-addons: fix patch treewide: system -> stdenv.hostPlatform.system vanadium: fix warnings
19 lines
554 B
Nix
19 lines
554 B
Nix
# Run the one with my cool feature here for now
|
|
let
|
|
sources = import ../../npins;
|
|
in
|
|
final: _: {
|
|
nil =
|
|
let
|
|
pkg = sources.nil.asFlake.packages.${final.stdenv.hostPlatform.system}.default;
|
|
in
|
|
pkg.overrideAttrs (oldAttrs: {
|
|
patches = oldAttrs.patches or [ ] ++ [
|
|
(final.fetchpatch {
|
|
name = "fix-handling-inherit-and-patfield-in-inline-assist";
|
|
url = "https://github.com/oxalica/nil/pull/178.patch";
|
|
hash = "sha256-YeVshmMadgYnFWA8S+nA+MwWKjVrzn71fqhfn6oL8Uk=";
|
|
})
|
|
];
|
|
});
|
|
}
|