tvl-depot/tvix/nix_cli/shell.nix
Vincent Ambo 31443d21ee chore(tvix): move nix-store CLI scaffolding to subfolder
For some reason a top-level Rust project ended up in this location,
which is incompatible with the actual project structure that's being
prepared for merge right now.

Change-Id: I9d919ad72fc7e4e4d8cbb9899e7f8d90fa7ca87a
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6060
Tested-by: BuildkiteCI
Reviewed-by: flokli <flokli@flokli.de>
Autosubmit: tazjin <tazjin@tvl.su>
2022-08-12 15:58:59 +00:00

11 lines
152 B
Nix

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