tvl-depot/tvix/nix_cli/shell.nix

12 lines
152 B
Nix
Raw Normal View History

let
depot = (import ./.. { });
pkgs = depot.third_party.nixpkgs;
in
pkgs.mkShell {
buildInputs = [
pkgs.rustup
pkgs.rust-analyzer
];
}