Advertisement
Guest User

Untitled

a guest
Jul 10th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.25 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. # does not work
  4. nix-shell --packages rustc rustfmt rustup binutils-unwrapped \
  5.           --pure \
  6.           --command 'rustup install nightly && cargo +nightly run'
  7.  
  8. # works fine
  9. rustup install nightly && cargo +nightly run
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement