about summary refs log tree commit diff
path: root/tvix/shell.nix
blob: e8d1e5e383eaf7363bcce6a32786b29919d37cf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ depot ? import ../. { }
, pkgs ? depot.third_party.nixpkgs
, ...
}:

pkgs.mkShell {
  name = "tvix-eval-dev-env";
  packages = [
    pkgs.buf-language-server
    pkgs.cargo
    pkgs.clippy
    pkgs.rust-analyzer
    pkgs.rustc
    pkgs.rustfmt
    pkgs.protobuf
  ];
}