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