mirror of
https://github.com/NixOS/nix.git
synced 2024-10-31 22:30:52 +00:00
nix make-content-addressable: Add examples
This commit is contained in:
parent
d77970fde7
commit
e68736936a
@ -18,9 +18,22 @@ struct CmdMakeContentAddressable : StorePathsCommand
|
||||
|
||||
std::string description() override
|
||||
{
|
||||
return "test";
|
||||
return "rewrite a path or closure to content-addressable form";
|
||||
}
|
||||
|
||||
Examples examples() override
|
||||
{
|
||||
return {
|
||||
Example{
|
||||
"To create a content-addressable representation of GNU Hello (but not its dependencies):",
|
||||
"nix make-content-addressable nixpkgs.hello"
|
||||
},
|
||||
Example{
|
||||
"To compute a content-addressable representation of the current NixOS system closure:",
|
||||
"nix make-content-addressable -r /run/current-system"
|
||||
},
|
||||
};
|
||||
}
|
||||
void run(ref<Store> store, Paths storePaths) override
|
||||
{
|
||||
auto paths = store->topoSortPaths(PathSet(storePaths.begin(), storePaths.end()));
|
||||
|
Loading…
Reference in New Issue
Block a user