272db8af1b
This does not add missing release notes, and it doesn't do anything about the profiles feature we would really like to have so we can have consistent credit. Change-Id: I72a6f7acfcff85f380be17dac76501a6f4693776
577 B
577 B
synopsis | prs | cls | credits | category | significance | ||
---|---|---|---|---|---|---|---|
Fix nested flake input `follows` | 6621 | 994 |
|
Fixes | significant |
Previously nested-input overrides were ignored; that is, the following did not
override anything, in spite of the nix3-flake
manual documenting it working:
{
inputs = {
foo.url = "github:bar/foo";
foo.inputs.bar.inputs.nixpkgs = "nixpkgs";
};
}
This is useful to avoid the 1000 instances of nixpkgs problem without having each flake in the dependency tree to expose all of its transitive dependencies for modification.