change deprecated attribute syntax in run examples

This commit is contained in:
matthew 2019-10-31 23:13:08 -05:00
parent e34b317bbf
commit d865085c7e

View file

@ -113,15 +113,15 @@ struct CmdRun : InstallablesCommand, RunCommon
},
Example{
"To start a shell providing youtube-dl from your 'nixpkgs' channel:",
"nix run nixpkgs.youtube-dl"
"nix run nixpkgs#youtube-dl"
},
Example{
"To run GNU Hello:",
"nix run nixpkgs.hello -c hello --greeting 'Hi everybody!'"
"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"
"nix run --store ~/my-nix nixpkgs#hello -c hello"
},
};
}