tvl-depot/tvix/eval/shell.nix

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

13 lines
181 B
Nix
Raw Normal View History

{ depot ? import ../../. { }
, pkgs ? depot.third_party.nixpkgs
}:
pkgs.mkShell {
name = "tvix-eval-dev-env";
packages = [
pkgs.cargo
pkgs.rustc
pkgs.clippy
];
}