7c92b07efd
First steps for baba Change-Id: Id6a68c5630cb85f280f4dcc7b2acf10c02454fd6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4732 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
10 lines
151 B
Nix
10 lines
151 B
Nix
let
|
|
depot = (import ./.. {});
|
|
pkgs = depot.third_party.nixpkgs;
|
|
|
|
in pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.rustup
|
|
pkgs.rust-analyzer
|
|
];
|
|
}
|