about summary refs log tree commit diff
path: root/tvix/eval/shell.nix
blob: 482ccb591eeb185c31d0ba5bc0ce4f271ce9d3ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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
  ];
}