tvl-depot/tvix/shell.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
224 B
Nix
Raw Normal View History

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