about summary refs log tree commit diff
path: root/tvix/eval/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval/shell.nix')
-rw-r--r--tvix/eval/shell.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/tvix/eval/shell.nix b/tvix/eval/shell.nix
deleted file mode 100644
index 482ccb591e..0000000000
--- a/tvix/eval/shell.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ 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
-  ];
-}