aboutsummaryrefslogtreecommitdiff
path: root/src/nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-05-28 13:22:11 +0200
committerEelco Dolstra <edolstra@gmail.com>2019-05-28 13:22:11 +0200
commite7e7a03baf446bad34939c106aee4b69f5619fd0 (patch)
treedfcbf4d80415b44bb83bc88d69e11a0c7f6164a6 /src/nix
parentfdf06ce72f9695f57f6215683e4b2e1c6ec463cf (diff)
nix flake deps: Remove --json flag for now
It doesn't produce valid JSON at the moment (but a concatenation of JSON objects). Anyway we probably should merge this command info 'nix flake info'.
Diffstat (limited to 'src/nix')
-rw-r--r--src/nix/flake.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nix/flake.cc b/src/nix/flake.cc
index da19caa5a..810529613 100644
--- a/src/nix/flake.cc
+++ b/src/nix/flake.cc
@@ -125,7 +125,7 @@ static void printNonFlakeInfo(const NonFlake & nonFlake, bool json)
}
// FIXME: merge info CmdFlakeInfo?
-struct CmdFlakeDeps : FlakeCommand, MixJSON
+struct CmdFlakeDeps : FlakeCommand
{
std::string name() override
{
@@ -152,10 +152,10 @@ struct CmdFlakeDeps : FlakeCommand, MixJSON
todo.pop();
for (auto & nonFlake : resFlake.nonFlakeDeps)
- printNonFlakeInfo(nonFlake, json);
+ printNonFlakeInfo(nonFlake, false);
for (auto & info : resFlake.flakeDeps) {
- printFlakeInfo(info.second.flake, json);
+ printFlakeInfo(info.second.flake, false);
todo.push(info.second);
}
}