diff options
author | Florian Klink <flokli@flokli.de> | 2022-11-08T22·26+0000 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-11-11T19·55+0000 |
commit | 7eb70148219f902fa1df6b361b87c37efa17a332 (patch) | |
tree | 4c948c6d8bc6f3aececc7045e65bf9e7193f46a9 /tvix/eval | |
parent | d00030128e465c8351412b1aefb4260681d8b497 (diff) |
feat(tvix/eval): move shell.nix and .envrc to //tvix r/5277
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
Diffstat (limited to 'tvix/eval')
-rw-r--r-- | tvix/eval/.envrc | 7 | ||||
-rw-r--r-- | tvix/eval/shell.nix | 14 |
2 files changed, 0 insertions, 21 deletions
diff --git a/tvix/eval/.envrc b/tvix/eval/.envrc deleted file mode 100644 index 777b522575a7..000000000000 --- a/tvix/eval/.envrc +++ /dev/null @@ -1,7 +0,0 @@ -if command -v lorri >/dev/null; then - eval "$(lorri direnv)" -else - use nix -fi - -source_up diff --git a/tvix/eval/shell.nix b/tvix/eval/shell.nix deleted file mode 100644 index 482ccb591eeb..000000000000 --- 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 - ]; -} |