mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 22:59:15 +00:00
22 lines
621 B
Nix
22 lines
621 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.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-4f7DeWJtt63IyOjqlwzz0f05rv1NBYZO4JWEkFeDimk=";
|
|
})
|
|
];
|
|
}
|
|
);
|
|
}
|