diff options
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..98e2dbf4b29b --- /dev/null +++ b/users/wpcarro/scratch/rust/shell.nix @@ -0,0 +1,7 @@ +{ pkgs ? import <nixpkgs> { }, ... }: + +pkgs.mkShell { + buildInputs = [ + pkgs.cargo + ]; +} |