.files/nix/overlays/nil.nix
Léana 江 b50954a4ef Upgrade to 25.11 (#25)
Reviewed-on: https://codeberg.org/leana8959/.files/pulls/25
Co-authored-by: Léana 江 <leana.jiang+git@icloud.com>
Co-committed-by: Léana 江 <leana.jiang+git@icloud.com>
2025-11-28 04:30:58 +01:00

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=";
})
];
});
}