aboutsummaryrefslogtreecommitdiff
path: root/src/nix/flake.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix/flake.cc')
-rw-r--r--src/nix/flake.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/nix/flake.cc b/src/nix/flake.cc
index 1648c56d0..d24f746f8 100644
--- a/src/nix/flake.cc
+++ b/src/nix/flake.cc
@@ -134,6 +134,15 @@ struct CmdFlakeLock : FlakeCommand
CmdFlakeLock()
{
+ addFlag({
+ .longName="update-input",
+ .description="Replaced with `nix flake update input...`",
+ .labels={"input-path"},
+ .handler={[&](std::string inputToUpdate){
+ throw UsageError("`nix flake lock --update-input %1%` has been replaced by `nix flake update %1%`", inputToUpdate);
+ }}
+ });
+
/* Remove flags that don't make sense. */
removeFlag("no-write-lock-file");
}