1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-21 11:30:30 -04:00

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{ Example{
"To start a shell providing youtube-dl from your 'nixpkgs' channel:", "To start a shell providing youtube-dl from your 'nixpkgs' channel:",
"nix run nixpkgs.youtube-dl" "nix run nixpkgs#youtube-dl"
}, },
Example{ Example{
"To run GNU Hello:", "To run GNU Hello:",
"nix run nixpkgs.hello -c hello --greeting 'Hi everybody!'" "nix run nixpkgs#hello -c hello --greeting 'Hi everybody!'"
}, },
Example{ Example{
"To run GNU Hello in a chroot store:", "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"
}, },
}; };
} }