.files/nix/overlays/nil.nix

9 lines
278 B
Nix

# Run the one with my cool feature here for now
let
sources = import ../sources.nix;
inherit (sources) nil;
inherit (nil.repository) owner repo;
in
final: _: {
nil = (builtins.getFlake "github:${owner}/${repo}/${nil.revision}").packages.${final.system}.default;
}