diff options
Diffstat (limited to 'tvix/shell.nix')
-rw-r--r-- | tvix/shell.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tvix/shell.nix b/tvix/shell.nix new file mode 100644 index 000000000000..2da5b5f24fbd --- /dev/null +++ b/tvix/shell.nix @@ -0,0 +1,15 @@ +{ depot ? import ../. { } +, pkgs ? depot.third_party.nixpkgs +, ... +}: + +pkgs.mkShell { + name = "tvix-eval-dev-env"; + packages = [ + pkgs.cargo + pkgs.clippy + pkgs.rust-analyzer + pkgs.rustc + pkgs.rustfmt + ]; +} |