mirror of
https://github.com/NixOS/nix
synced 2025-07-05 04:01:47 +02:00
Add flag --override-input to override specific lock file entries
E.g. $ nix flake update ~/Misc/eelco-configurations/hagbard \ --override-input 'dwarffs/nixpkgs' ../my-nixpkgs overrides the 'nixpkgs' input of the 'dwarffs' input of the top-level flake. Fixes #2837.
This commit is contained in:
parent
e53c89a643
commit
f68bed7f67
8 changed files with 75 additions and 26 deletions
|
@ -59,7 +59,16 @@ struct LockedFlake
|
|||
Fingerprint getFingerprint() const;
|
||||
};
|
||||
|
||||
LockedFlake lockFlake(EvalState &, const FlakeRef &, LockFileMode);
|
||||
struct LockFlags
|
||||
{
|
||||
std::map<InputPath, FlakeRef> inputOverrides;
|
||||
};
|
||||
|
||||
LockedFlake lockFlake(
|
||||
EvalState &,
|
||||
const FlakeRef &,
|
||||
LockFileMode,
|
||||
const LockFlags &);
|
||||
|
||||
void callFlake(EvalState & state,
|
||||
const Flake & flake,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue