nix search: Add examples
This commit is contained in:
parent
4967f0509a
commit
24e23a1a73
1 changed files with 18 additions and 0 deletions
|
@ -56,6 +56,24 @@ struct CmdSearch : SourceExprCommand, MixJSON
|
|||
return "query available packages";
|
||||
}
|
||||
|
||||
Examples examples() override
|
||||
{
|
||||
return {
|
||||
Example{
|
||||
"To show all available packages:",
|
||||
"nix search"
|
||||
},
|
||||
Example{
|
||||
"To show any packages containing 'blender' in its name or description:",
|
||||
"nix search blender"
|
||||
},
|
||||
Example{
|
||||
"To search for Firefox and Chromium:",
|
||||
"nix search 'firefox|chromium'"
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
void run(ref<Store> store) override
|
||||
{
|
||||
settings.readOnlyMode = true;
|
||||
|
|
Loading…
Reference in a new issue