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.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/tvix/eval/shell.nix b/tvix/eval/shell.nix
deleted file mode 100644
index 036e9221dd..0000000000
--- a/tvix/eval/shell.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ depot ? import ../../. { }
-, pkgs ? depot.third_party.nixpkgs
-}:
-
-pkgs.mkShell {
-  name = "tvix-eval-dev-env";
-  packages = [
-    pkgs.cargo
-    pkgs.rustc
-    pkgs.rustfmt
-    pkgs.clippy
-  ];
-}