diff options
author | William Carroll <wpcarro@gmail.com> | 2022-06-27T00·55-0700 |
---|---|---|
committer | wpcarro <wpcarro@gmail.com> | 2022-06-27T16·20+0000 |
commit | 95f302f95da11bc6e891ae2ab675c43ce0167ad7 (patch) | |
tree | 93a7982576d30a3d41152634dc7925b5a489a7b0 /users/wpcarro/scratch/rust/shell.nix | |
parent | d8ccb3b9e17f8c489255478ee87de739a64b564a (diff) |
feat(wpcarro/rust): Create a sandbox for learning Rust r/4256
See README Change-Id: I007a4d5c3b840986f6d3bc93aaa72d26daaa9b12 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5895 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/scratch/rust/shell.nix')
-rw-r--r-- | users/wpcarro/scratch/rust/shell.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/users/wpcarro/scratch/rust/shell.nix b/users/wpcarro/scratch/rust/shell.nix new file mode 100644 index 000000000000..064e7d8bb38a --- /dev/null +++ b/users/wpcarro/scratch/rust/shell.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +pkgs.mkShell { + buildInputs = [ + pkgs.cargo + ]; +} |