feat(tvix/eval): move shell.nix and .envrc to //tvix

Both //tvix/eval and //tvix/nix_cli have need to for rust tooling available
in $PATH.

Move this one level up, so it's accessible in all subdirectories.

Change-Id: I0763bbe9cefdc962f3a8f86c51e8f67cde8b4b04
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7248
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: sterni <sternenseemann@systemli.org>
Reviewed-by: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
This commit is contained in:
Florian Klink 2022-11-08 22:26:12 +00:00 committed by clbot
parent d00030128e
commit 7eb7014821
3 changed files with 2 additions and 12 deletions

15
tvix/shell.nix Normal file
View file

@ -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
];
}