Merge pull request #4098 from DavHau/davhau-add-nix-run-examples

add more examples to --help of `nix run`
This commit is contained in:
Eelco Dolstra 2020-10-01 12:45:24 +02:00 committed by GitHub
commit 4a358743d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -167,6 +167,14 @@ struct CmdRun : InstallableCommand, RunCommon
"To run Blender:",
"nix run blender-bin"
},
Example{
"To run vim from nixpkgs:",
"nix run nixpkgs#vim"
},
Example{
"To run vim from nixpkgs with arguments:",
"nix run nixpkgs#vim -- --help"
},
};
}