nix --help: Show usage examples

This commit is contained in:
Eelco Dolstra 2016-04-21 14:58:32 +02:00
parent 1b0088ebb2
commit 69e3ffb076
3 changed files with 41 additions and 0 deletions

View file

@ -36,6 +36,20 @@ struct CmdVerify : StorePathsCommand
return "verify the integrity of store paths";
}
Examples examples() override
{
return {
Example{
"To verify the entire Nix store:",
"nix verify --all"
},
Example{
"To check whether each path in the closure of Firefox has at least 2 signatures:",
"nix verify -r -n2 --no-contents $(type -p firefox)"
},
};
}
void run(ref<Store> store, Paths storePaths) override
{
restoreAffinity(); // FIXME