Merge pull request #4959 from NixOS/override-non-flake-inputs

Keep the `isFlake` attribute for overriden inputs
This commit is contained in:
Eelco Dolstra 2021-06-29 14:23:50 +02:00 committed by GitHub
commit 5a18e2a533
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -359,7 +359,12 @@ LockedFlake lockFlake(
ancestors? */
auto i = overrides.find(inputPath);
bool hasOverride = i != overrides.end();
if (hasOverride) overridesUsed.insert(inputPath);
if (hasOverride) {
overridesUsed.insert(inputPath);
// Respect the “flakeness” of the input even if we
// override it
i->second.isFlake = input2.isFlake;
}
auto & input = hasOverride ? i->second : input2;
/* Resolve 'follows' later (since it may refer to an input