diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2018-02-19T19·38+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2018-02-19T19·38+0100 |
commit | 70eb64147e073a0a7cf1d44af6815cfd4f8d507f (patch) | |
tree | dba5f62e4dc9d85dbed215075917ea2b6f8fd79a /src | |
parent | a6c0b773b72d4e30690e01f1f1dcffc28f2d9ea1 (diff) |
Update release notes
Also add some examples to nix --help.
Diffstat (limited to 'src')
-rw-r--r-- | src/nix/ls.cc | 20 | ||||
-rw-r--r-- | src/nix/run.cc | 4 |
2 files changed, 24 insertions, 0 deletions
diff --git a/src/nix/ls.cc b/src/nix/ls.cc index 69620595d8ca..e99622faf472 100644 --- a/src/nix/ls.cc +++ b/src/nix/ls.cc @@ -90,6 +90,16 @@ struct CmdLsStore : StoreCommand, MixLs expectArg("path", &path); } + Examples examples() override + { + return { + Example{ + "To list the contents of a store path in a binary cache:", + "nix ls-store --store https://cache.nixos.org/ -lR /nix/store/0i2jd68mp5g6h2sa5k9c85rb80sn8hi9-hello-2.10" + }, + }; + } + std::string name() override { return "ls-store"; @@ -116,6 +126,16 @@ struct CmdLsNar : Command, MixLs expectArg("path", &path); } + Examples examples() override + { + return { + Example{ + "To list a specific file in a NAR:", + "nix ls-nar -l hello.nar /bin/hello" + }, + }; + } + std::string name() override { return "ls-nar"; diff --git a/src/nix/run.cc b/src/nix/run.cc index ade87e63a49c..822654daf488 100644 --- a/src/nix/run.cc +++ b/src/nix/run.cc @@ -85,6 +85,10 @@ struct CmdRun : InstallablesCommand "To run GNU Hello:", "nix run nixpkgs.hello -c hello --greeting 'Hi everybody!'" }, + Example{ + "To run GNU Hello in a chroot store:", + "nix run --store ~/my-nix nixpkgs.hello -c hello" + }, }; } |